diff --git a/node_modules/redux/.DS_Store b/node_modules/redux/.DS_Store
new file mode 100644
index 0000000..c88a062
Binary files /dev/null and b/node_modules/redux/.DS_Store differ
diff --git a/node_modules/redux/CHANGELOG.md b/node_modules/redux/CHANGELOG.md
new file mode 100644
index 0000000..7988926
--- /dev/null
+++ b/node_modules/redux/CHANGELOG.md
@@ -0,0 +1,4 @@
+# Change Log
+
+This project adheres to [Semantic Versioning](http://semver.org/).
+Every release, along with the migration instructions, is documented on the Github [Releases](https://github.com/reactjs/redux/releases) page.
diff --git a/node_modules/redux/LICENSE.md b/node_modules/redux/LICENSE.md
new file mode 100644
index 0000000..55bc8df
--- /dev/null
+++ b/node_modules/redux/LICENSE.md
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2015-present Dan Abramov
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/node_modules/redux/README.md b/node_modules/redux/README.md
new file mode 100644
index 0000000..3187ea4
--- /dev/null
+++ b/node_modules/redux/README.md
@@ -0,0 +1,215 @@
+# [Redux](http://redux.js.org)
+
+Redux is a predictable state container for JavaScript apps.
+
+It helps you write applications that behave consistently, run in different environments (client, server, and native), and are easy to test. On top of that, it provides a great developer experience, such as [live code editing combined with a time traveling debugger](https://github.com/gaearon/redux-devtools).
+
+You can use Redux together with [React](https://facebook.github.io/react/), or with any other view library.
+It is tiny (2kB, including dependencies).
+
+[](https://travis-ci.org/reactjs/redux)
+[](https://www.npmjs.com/package/redux)
+[](https://www.npmjs.com/package/redux)
+[](https://discord.gg/0ZcbPKXt5bZ6au5t)
+[](https://webchat.freenode.net/)
+[](https://changelog.com/187)
+
+>**New! Learn Redux from its creator:
+>[Getting Started with Redux](https://egghead.io/series/getting-started-with-redux) (30 free videos)**
+
+### Testimonials
+
+>[“Love what you’re doing with Redux”](https://twitter.com/jingc/status/616608251463909376)
+>Jing Chen, creator of Flux
+
+>[“I asked for comments on Redux in FB's internal JS discussion group, and it was universally praised. Really awesome work.”](https://twitter.com/fisherwebdev/status/616286955693682688)
+>Bill Fisher, author of Flux documentation
+
+>[“It's cool that you are inventing a better Flux by not doing Flux at all.”](https://twitter.com/andrestaltz/status/616271392930201604)
+>André Staltz, creator of Cycle
+
+### Developer Experience
+
+I wrote Redux while working on my React Europe talk called [“Hot Reloading with Time Travel”](https://www.youtube.com/watch?v=xsSnOQynTHs). My goal was to create a state management library with minimal API but completely predictable behavior, so it is possible to implement logging, hot reloading, time travel, universal apps, record and replay, without any buy-in from the developer.
+
+### Influences
+
+Redux evolves the ideas of [Flux](http://facebook.github.io/flux/), but avoids its complexity by taking cues from [Elm](https://github.com/evancz/elm-architecture-tutorial/).
+Whether you have used them or not, Redux only takes a few minutes to get started with.
+
+### Installation
+
+To install the stable version:
+
+```
+npm install --save redux
+```
+
+This assumes you are using [npm](https://www.npmjs.com/) as your package manager.
+If you don’t, you can [access these files on npmcdn](https://npmcdn.com/redux/), download them, or point your package manager to them.
+
+Most commonly people consume Redux as a collection of [CommonJS](http://webpack.github.io/docs/commonjs.html) modules. These modules are what you get when you import `redux` in a [Webpack](http://webpack.github.io), [Browserify](http://browserify.org/), or a Node environment. If you like to live on the edge and use [Rollup](http://rollupjs.org), we support that as well.
+
+If you don’t use a module bundler, it’s also fine. The `redux` npm package includes precompiled production and development [UMD](https://github.com/umdjs/umd) builds in the [`dist` folder](https://npmcdn.com/redux/dist/). They can be used directly without a bundler and are thus compatible with many popular JavaScript module loaders and environments. For example, you can drop a UMD build as a [`
+
+
+
+
+
+
+
+
+
+