diff --git a/.mailmap b/.mailmap index 396ff233c..4adf1be93 100644 --- a/.mailmap +++ b/.mailmap @@ -6,13 +6,13 @@ # # For explanation on this file format: man git-shortlog -Anand Babu (AB) Periasamy Anand Babu (AB) Periasamy -Anand Babu (AB) Periasamy +Anand Babu (AB) Periasamy Anand Babu (AB) Periasamy +Anand Babu (AB) Periasamy Anis Elleuch -Frederick F. Kautz IV -Harshavardhana -Harshavardhana -Harshavardhana -Krishna Srinivas +Frederick F. Kautz IV +Harshavardhana +Harshavardhana +Harshavardhana +Krishna Srinivas Matthew Farrellee Nate Rosenblum \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 67944a0c5..9658a2beb 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,13 +1,13 @@ -# Minio Contribution Guide [![Slack](https://slack.minio.io/slack?type=svg)](https://slack.minio.io) [![Go Report Card](https://goreportcard.com/badge/minio/minio)](https://goreportcard.com/report/minio/minio) [![Docker Pulls](https://img.shields.io/docker/pulls/minio/minio.svg?maxAge=604800)](https://hub.docker.com/r/minio/minio/) [![codecov](https://codecov.io/gh/minio/minio/branch/master/graph/badge.svg)](https://codecov.io/gh/minio/minio) +# MinIO Contribution Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io) [![Go Report Card](https://goreportcard.com/badge/minio/minio)](https://goreportcard.com/report/minio/minio) [![Docker Pulls](https://img.shields.io/docker/pulls/minio/minio.svg?maxAge=604800)](https://hub.docker.com/r/minio/minio/) [![codecov](https://codecov.io/gh/minio/minio/branch/master/graph/badge.svg)](https://codecov.io/gh/minio/minio) -``Minio`` community welcomes your contribution. To make the process as seamless as possible, we recommend you read this contribution guide. +``MinIO`` community welcomes your contribution. To make the process as seamless as possible, we recommend you read this contribution guide. ## Development Workflow -Start by forking the Minio GitHub repository, make changes in a branch and then send a pull request. We encourage pull requests to discuss code changes. Here are the steps in details: +Start by forking the MinIO GitHub repository, make changes in a branch and then send a pull request. We encourage pull requests to discuss code changes. Here are the steps in details: -### Setup your Minio GitHub Repository -Fork [Minio upstream](https://github.com/minio/minio/fork) source repository to your own personal repository. Copy the URL of your Minio fork (you will need it for the `git clone` command below). +### Setup your MinIO GitHub Repository +Fork [MinIO upstream](https://github.com/minio/minio/fork) source repository to your own personal repository. Copy the URL of your MinIO fork (you will need it for the `git clone` command below). ```sh $ git clone https://github.com/minio/minio @@ -31,10 +31,10 @@ Before making code changes, make sure you create a separate branch for these cha $ git checkout -b my-new-feature ``` -### Test Minio server changes +### Test MinIO server changes After your code changes, make sure -- To add test cases for the new code. If you have questions about how to do it, please ask on our [Slack](slack.minio.io) channel. +- To add test cases for the new code. If you have questions about how to do it, please ask on our [Slack](https://slack.min.io) channel. - To run `make verifiers` - To squash your commits into a single commit. `git rebase -i`. It's okay to force update your pull request. - To run `go test -race ./...` and `go build` completes. @@ -56,13 +56,13 @@ $ git push origin my-new-feature Pull requests can be created via GitHub. Refer to [this document](https://help.github.com/articles/creating-a-pull-request/) for detailed steps on how to create a pull request. After a Pull Request gets peer reviewed and approved, it will be merged. ## FAQs -### How does ``Minio`` manages dependencies? -``Minio`` uses `go mod` to manage its dependencies. +### How does ``MinIO`` manages dependencies? +``MinIO`` uses `go mod` to manage its dependencies. - Run `go get foo/bar` in the source folder to add the dependency to `go.mod` file. To remove a dependency - Edit your code and remove the import reference. - Run `go mod tidy` in the source folder to remove dependency from `go.mod` file. -### What are the coding guidelines for Minio? -``Minio`` is fully conformant with Golang style. Refer: [Effective Go](https://github.com/golang/go/wiki/CodeReviewComments) article from Golang project. If you observe offending code, please feel free to send a pull request or ping us on [Slack](https://slack.minio.io). +### What are the coding guidelines for MinIO? +``MinIO`` is fully conformant with Golang style. Refer: [Effective Go](https://github.com/golang/go/wiki/CodeReviewComments) article from Golang project. If you observe offending code, please feel free to send a pull request or ping us on [Slack](https://slack.min.io). diff --git a/Dockerfile b/Dockerfile index 5cbb5d3f4..4ce2cf272 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM golang:1.12-alpine -LABEL maintainer="Minio Inc " +LABEL maintainer="MinIO Inc " ENV GOPATH /go ENV CGO_ENABLED 0 diff --git a/Dockerfile.dev b/Dockerfile.dev index fc8cbad0b..a2fabcade 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,6 +1,6 @@ FROM alpine:3.9 -LABEL maintainer="Minio Inc " +LABEL maintainer="MinIO Inc " COPY dockerscripts/docker-entrypoint.sh dockerscripts/healthcheck /usr/bin/ COPY minio /usr/bin/ diff --git a/Dockerfile.release b/Dockerfile.release index e8ae2af79..f287860a3 100644 --- a/Dockerfile.release +++ b/Dockerfile.release @@ -11,7 +11,7 @@ RUN \ FROM alpine:3.9 -LABEL maintainer="Minio Inc " +LABEL maintainer="MinIO Inc " COPY --from=0 /usr/bin/healthcheck /usr/bin/healthcheck COPY dockerscripts/docker-entrypoint.sh /usr/bin/ @@ -23,7 +23,7 @@ ENV MINIO_ACCESS_KEY_FILE=access_key \ RUN \ apk add --no-cache ca-certificates 'curl>7.61.0' && \ echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf && \ - curl https://dl.minio.io/server/minio/release/linux-amd64/minio > /usr/bin/minio && \ + curl https://dl.min.io/server/minio/release/linux-amd64/minio > /usr/bin/minio && \ chmod +x /usr/bin/minio && \ chmod +x /usr/bin/docker-entrypoint.sh && \ chmod +x /usr/bin/healthcheck diff --git a/NOTICE b/NOTICE index f98d3d678..eab94161b 100644 --- a/NOTICE +++ b/NOTICE @@ -1,9 +1,9 @@ -Minio Cloud Storage, (C) 2014,2015 Minio, Inc. +MinIO Cloud Storage, (C) 2014,2015 MinIO, Inc. -This product includes software developed at Minio, Inc. -(https://minio.io/). +This product includes software developed at MinIO, Inc. +(https://min.io/). -The Minio project contains unmodified/modified subcomponents too with +The MinIO project contains unmodified/modified subcomponents too with separate copyright notices and license terms. Your use of the source code for these subcomponents is subject to the terms and conditions of the following licenses. diff --git a/README.md b/README.md index 571204f28..7159a98f0 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -# Minio Quickstart Guide -[![Slack](https://slack.minio.io/slack?type=svg)](https://slack.minio.io) [![Go Report Card](https://goreportcard.com/badge/minio/minio)](https://goreportcard.com/report/minio/minio) [![Docker Pulls](https://img.shields.io/docker/pulls/minio/minio.svg?maxAge=604800)](https://hub.docker.com/r/minio/minio/) [![codecov](https://codecov.io/gh/minio/minio/branch/master/graph/badge.svg)](https://codecov.io/gh/minio/minio) +# MinIO Quickstart Guide +[![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io) [![Go Report Card](https://goreportcard.com/badge/minio/minio)](https://goreportcard.com/report/minio/minio) [![Docker Pulls](https://img.shields.io/docker/pulls/minio/minio.svg?maxAge=604800)](https://hub.docker.com/r/minio/minio/) [![codecov](https://codecov.io/gh/minio/minio/branch/master/graph/badge.svg)](https://codecov.io/gh/minio/minio) -Minio is an object storage server released under Apache License v2.0. It is compatible with Amazon S3 cloud storage service. It is best suited for storing unstructured data such as photos, videos, log files, backups and container / VM images. Size of an object can range from a few KBs to a maximum of 5TB. +MinIO is an object storage server released under Apache License v2.0. It is compatible with Amazon S3 cloud storage service. It is best suited for storing unstructured data such as photos, videos, log files, backups and container / VM images. Size of an object can range from a few KBs to a maximum of 5TB. -Minio server is light enough to be bundled with the application stack, similar to NodeJS, Redis and MySQL. +MinIO server is light enough to be bundled with the application stack, similar to NodeJS, Redis and MySQL. ## Docker Container ### Stable @@ -17,7 +17,7 @@ docker run -p 9000:9000 minio/minio server /data docker pull minio/minio:edge docker run -p 9000:9000 minio/minio:edge server /data ``` -Note: Docker will not display the autogenerated keys unless you start the container with the `-it`(interactive TTY) argument. Generally, it is not recommended to use autogenerated keys with containers. Please visit Minio Docker quickstart guide for more information [here](https://docs.minio.io/docs/minio-docker-quickstart-guide) +Note: Docker will not display the autogenerated keys unless you start the container with the `-it`(interactive TTY) argument. Generally, it is not recommended to use autogenerated keys with containers. Please visit MinIO Docker quickstart guide for more information [here](https://docs.min.io/docs/minio-docker-quickstart-guide) ## macOS ### Homebrew @@ -36,7 +36,7 @@ brew install minio/stable/minio ### Binary Download | Platform | Architecture | URL | | ---------- | -------- | ------ | -| Apple macOS | 64-bit Intel | https://dl.minio.io/server/minio/release/darwin-amd64/minio | +| Apple macOS | 64-bit Intel | https://dl.min.io/server/minio/release/darwin-amd64/minio | ```sh chmod 755 minio ./minio server /data @@ -46,18 +46,18 @@ chmod 755 minio ### Binary Download | Platform | Architecture | URL | | ---------- | -------- | ------ | -| GNU/Linux | 64-bit Intel | https://dl.minio.io/server/minio/release/linux-amd64/minio | +| GNU/Linux | 64-bit Intel | https://dl.min.io/server/minio/release/linux-amd64/minio | ```sh -wget https://dl.minio.io/server/minio/release/linux-amd64/minio +wget https://dl.min.io/server/minio/release/linux-amd64/minio chmod +x minio ./minio server /data ``` | Platform | Architecture | URL | | ---------- | -------- | ------ | -| GNU/Linux | ppc64le | https://dl.minio.io/server/minio/release/linux-ppc64le/minio | +| GNU/Linux | ppc64le | https://dl.min.io/server/minio/release/linux-ppc64le/minio | ```sh -wget https://dl.minio.io/server/minio/release/linux-ppc64le/minio +wget https://dl.min.io/server/minio/release/linux-ppc64le/minio chmod +x minio ./minio server /data ``` @@ -66,7 +66,7 @@ chmod +x minio ### Binary Download | Platform | Architecture | URL | | ---------- | -------- | ------ | -| Microsoft Windows | 64-bit | https://dl.minio.io/server/minio/release/windows-amd64/minio.exe | +| Microsoft Windows | 64-bit | https://dl.min.io/server/minio/release/windows-amd64/minio.exe | ```sh minio.exe server D:\Photos ``` @@ -91,7 +91,7 @@ GO111MODULE=on go get github.com/minio/minio ## Allow port access for Firewalls -By default Minio uses the port 9000 to listen for incoming connections. If your platform blocks the port by default, you may need to enable access to the port. +By default MinIO uses the port 9000 to listen for incoming connections. If your platform blocks the port by default, you may need to enable access to the port. ### iptables @@ -144,29 +144,29 @@ Note that `permanent` makes sure the rules are persistent across firewall start, firewall-cmd --reload ``` -## Test using Minio Browser -Minio Server comes with an embedded web based object browser. Point your web browser to http://127.0.0.1:9000 ensure your server has started successfully. +## Test using MinIO Browser +MinIO Server comes with an embedded web based object browser. Point your web browser to http://127.0.0.1:9000 ensure your server has started successfully. ![Screenshot](https://github.com/minio/minio/blob/master/docs/screenshots/minio-browser.png?raw=true) -## Test using Minio Client `mc` -`mc` provides a modern alternative to UNIX commands like ls, cat, cp, mirror, diff etc. It supports filesystems and Amazon S3 compatible cloud storage services. Follow the Minio Client [Quickstart Guide](https://docs.minio.io/docs/minio-client-quickstart-guide) for further instructions. +## Test using MinIO Client `mc` +`mc` provides a modern alternative to UNIX commands like ls, cat, cp, mirror, diff etc. It supports filesystems and Amazon S3 compatible cloud storage services. Follow the MinIO Client [Quickstart Guide](https://docs.min.io/docs/minio-client-quickstart-guide) for further instructions. ## Pre-existing data -When deployed on a single drive, Minio server lets clients access any pre-existing data in the data directory. For example, if Minio is started with the command `minio server /mnt/data`, any pre-existing data in the `/mnt/data` directory would be accessible to the clients. +When deployed on a single drive, MinIO server lets clients access any pre-existing data in the data directory. For example, if MinIO is started with the command `minio server /mnt/data`, any pre-existing data in the `/mnt/data` directory would be accessible to the clients. The above statement is also valid for all gateway backends. ## Explore Further -- [Minio Erasure Code QuickStart Guide](https://docs.minio.io/docs/minio-erasure-code-quickstart-guide) -- [Use `mc` with Minio Server](https://docs.minio.io/docs/minio-client-quickstart-guide) -- [Use `aws-cli` with Minio Server](https://docs.minio.io/docs/aws-cli-with-minio) -- [Use `s3cmd` with Minio Server](https://docs.minio.io/docs/s3cmd-with-minio) -- [Use `minio-go` SDK with Minio Server](https://docs.minio.io/docs/golang-client-quickstart-guide) -- [The Minio documentation website](https://docs.minio.io) +- [MinIO Erasure Code QuickStart Guide](https://docs.min.io/docs/minio-erasure-code-quickstart-guide) +- [Use `mc` with MinIO Server](https://docs.min.io/docs/minio-client-quickstart-guide) +- [Use `aws-cli` with MinIO Server](https://docs.min.io/docs/aws-cli-with-minio) +- [Use `s3cmd` with MinIO Server](https://docs.min.io/docs/s3cmd-with-minio) +- [Use `minio-go` SDK with MinIO Server](https://docs.min.io/docs/golang-client-quickstart-guide) +- [The MinIO documentation website](https://docs.min.io) -## Contribute to Minio Project -Please follow Minio [Contributor's Guide](https://github.com/minio/minio/blob/master/CONTRIBUTING.md) +## Contribute to MinIO Project +Please follow MinIO [Contributor's Guide](https://github.com/minio/minio/blob/master/CONTRIBUTING.md) ## License [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fminio%2Fminio.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fminio%2Fminio?ref=badge_large) diff --git a/README_zh_CN.md b/README_zh_CN.md index 1714a8468..3ba7e9657 100644 --- a/README_zh_CN.md +++ b/README_zh_CN.md @@ -1,8 +1,8 @@ -# Minio Quickstart Guide [![Slack](https://slack.minio.io/slack?type=svg)](https://slack.minio.io) [![Go Report Card](https://goreportcard.com/badge/minio/minio)](https://goreportcard.com/report/minio/minio) [![Docker Pulls](https://img.shields.io/docker/pulls/minio/minio.svg?maxAge=604800)](https://hub.docker.com/r/minio/minio/) [![codecov](https://codecov.io/gh/minio/minio/branch/master/graph/badge.svg)](https://codecov.io/gh/minio/minio) +# MinIO Quickstart Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io) [![Go Report Card](https://goreportcard.com/badge/minio/minio)](https://goreportcard.com/report/minio/minio) [![Docker Pulls](https://img.shields.io/docker/pulls/minio/minio.svg?maxAge=604800)](https://hub.docker.com/r/minio/minio/) [![codecov](https://codecov.io/gh/minio/minio/branch/master/graph/badge.svg)](https://codecov.io/gh/minio/minio) -Minio 是一个基于Apache License v2.0开源协议的对象存储服务。它兼容亚马逊S3云存储服务接口,非常适合于存储大容量非结构化的数据,例如图片、视频、日志文件、备份数据和容器/虚拟机镜像等,而一个对象文件可以是任意大小,从几kb到最大5T不等。 +MinIO 是一个基于Apache License v2.0开源协议的对象存储服务。它兼容亚马逊S3云存储服务接口,非常适合于存储大容量非结构化的数据,例如图片、视频、日志文件、备份数据和容器/虚拟机镜像等,而一个对象文件可以是任意大小,从几kb到最大5T不等。 -Minio是一个非常轻量的服务,可以很简单的和其他应用的结合,类似 NodeJS, Redis 或者 MySQL。 +MinIO是一个非常轻量的服务,可以很简单的和其他应用的结合,类似 NodeJS, Redis 或者 MySQL。 ## Docker 容器 ### 稳定版 @@ -16,7 +16,7 @@ docker run -p 9000:9000 minio/minio server /data docker pull minio/minio:edge docker run -p 9000:9000 minio/minio:edge server /data ``` -更多Docker部署信息请访问 [这里](https://docs.minio.io/docs/minio-docker-quickstart-guide) +更多Docker部署信息请访问 [这里](https://docs.min.io/docs/minio-docker-quickstart-guide) ## macOS ### Homebrew @@ -37,7 +37,7 @@ brew install minio/stable/minio ### 下载二进制文件 | 操作系统 | CPU架构 | 地址 | | ---------- | -------- | ------ | -| Apple macOS | 64-bit Intel | https://dl.minio.io/server/minio/release/darwin-amd64/minio | +| Apple macOS | 64-bit Intel | https://dl.min.io/server/minio/release/darwin-amd64/minio | ```sh chmod 755 minio ./minio server /data @@ -47,7 +47,7 @@ chmod 755 minio ### 下载二进制文件 | 操作系统 | CPU架构 | 地址 | | ---------- | -------- | ------ | -| GNU/Linux | 64-bit Intel | https://dl.minio.io/server/minio/release/linux-amd64/minio | +| GNU/Linux | 64-bit Intel | https://dl.min.io/server/minio/release/linux-amd64/minio | ```sh chmod +x minio ./minio server /data @@ -57,7 +57,7 @@ chmod +x minio ### 下载二进制文件 | 操作系统 | CPU架构 | 地址 | | ---------- | -------- | ------ | -| 微软Windows系统 | 64位 | https://dl.minio.io/server/minio/release/windows-amd64/minio.exe | +| 微软Windows系统 | 64位 | https://dl.min.io/server/minio/release/windows-amd64/minio.exe | ```sh minio.exe server D:\Photos ``` @@ -75,32 +75,32 @@ service minio start ## 使用源码安装 -采用源码安装仅供开发人员和高级用户使用,如果你还没有Golang环境, 请参考 [How to install Golang](https://docs.minio.io/docs/how-to-install-golang). +采用源码安装仅供开发人员和高级用户使用,如果你还没有Golang环境, 请参考 [How to install Golang](https://docs.min.io/docs/how-to-install-golang). ```sh go get -u github.com/minio/minio ``` -## 使用Minio浏览器进行验证 +## 使用MinIO浏览器进行验证 安装后使用浏览器访问[http://127.0.0.1:9000](http://127.0.0.1:9000),如果可以访问,则表示minio已经安装成功。 ![Screenshot](https://github.com/minio/minio/blob/master/docs/screenshots/minio-browser.png?raw=true) -## 使用Minio客户端 `mc`进行验证 -`mc` 提供了一些UNIX常用命令的替代品,像ls, cat, cp, mirror, diff这些。 它支持文件系统和亚马逊S3云存储服务。 更多信息请参考 [mc快速入门](https://docs.minio.io/docs/minio-client-quickstart-guide) 。 +## 使用MinIO客户端 `mc`进行验证 +`mc` 提供了一些UNIX常用命令的替代品,像ls, cat, cp, mirror, diff这些。 它支持文件系统和亚马逊S3云存储服务。 更多信息请参考 [mc快速入门](https://docs.min.io/docs/minio-client-quickstart-guide) 。 ## 已经存在的数据 -当在单块磁盘上部署Minio server,Minio server允许客户端访问数据目录下已经存在的数据。比如,如果Minio使用`minio server /mnt/data`启动,那么所有已经在`/mnt/data`目录下的数据都可以被客户端访问到。 +当在单块磁盘上部署MinIO server,MinIO server允许客户端访问数据目录下已经存在的数据。比如,如果MinIO使用`minio server /mnt/data`启动,那么所有已经在`/mnt/data`目录下的数据都可以被客户端访问到。 上述描述对所有网关后端同样有效。 ## 了解更多 -- [Minio纠删码入门](https://docs.minio.io/docs/minio-erasure-code-quickstart-guide) -- [`mc`快速入门](https://docs.minio.io/docs/minio-client-quickstart-guide) -- [使用 `aws-cli`](https://docs.minio.io/docs/aws-cli-with-minio) -- [使用 `s3cmd`](https://docs.minio.io/docs/s3cmd-with-minio) -- [使用 `minio-go` SDK](https://docs.minio.io/docs/golang-client-quickstart-guide) -- [Minio文档](https://docs.minio.io) +- [MinIO纠删码入门](https://docs.min.io/docs/minio-erasure-code-quickstart-guide) +- [`mc`快速入门](https://docs.min.io/docs/minio-client-quickstart-guide) +- [使用 `aws-cli`](https://docs.min.io/docs/aws-cli-with-minio) +- [使用 `s3cmd`](https://docs.min.io/docs/s3cmd-with-minio) +- [使用 `minio-go` SDK](https://docs.min.io/docs/golang-client-quickstart-guide) +- [MinIO文档](https://docs.min.io) -## 如何参与到Minio项目 -请参考 [贡献者指南](https://github.com/minio/minio/blob/master/CONTRIBUTING.md)。欢迎各位中国程序员加到Minio项目中。 +## 如何参与到MinIO项目 +请参考 [贡献者指南](https://github.com/minio/minio/blob/master/CONTRIBUTING.md)。欢迎各位中国程序员加到MinIO项目中。 diff --git a/browser/README.md b/browser/README.md index 9a65c4eb2..479382331 100644 --- a/browser/README.md +++ b/browser/README.md @@ -1,6 +1,6 @@ -# Minio File Browser +# MinIO File Browser -``Minio Browser`` provides minimal set of UI to manage buckets and objects on ``minio`` server. ``Minio Browser`` is written in javascript and released under [Apache 2.0 License](./LICENSE). +``MinIO Browser`` provides minimal set of UI to manage buckets and objects on ``minio`` server. ``MinIO Browser`` is written in javascript and released under [Apache 2.0 License](./LICENSE). ## Installation @@ -12,7 +12,7 @@ yarn ### Install `go-bindata` and `go-bindata-assetfs` -If you do not have a working Golang environment, please follow [Install Golang](https://docs.minio.io/docs/how-to-install-golang) +If you do not have a working Golang environment, please follow [Install Golang](https://docs.min.io/docs/how-to-install-golang) ```sh go get github.com/jteeuwen/go-bindata/... @@ -29,7 +29,7 @@ yarn release This generates ui-assets.go in the current directory. Now do `make` in the parent directory to build the minio binary with the newly generated ``ui-assets.go`` -### Run Minio Browser with live reload +### Run MinIO Browser with live reload ```sh yarn dev @@ -37,7 +37,7 @@ yarn dev Open [http://localhost:8080/minio/](http://localhost:8080/minio/) in your browser to play with the application -### Run Minio Browser with live reload on custom port +### Run MinIO Browser with live reload on custom port Edit `browser/webpack.config.js` diff --git a/browser/app/index.js b/browser/app/index.js index 9f1e70d2f..9d2604e9c 100644 --- a/browser/app/index.js +++ b/browser/app/index.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2016, 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2016, 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/App.js b/browser/app/js/App.js index 9dd870849..6a263de63 100644 --- a/browser/app/js/App.js +++ b/browser/app/js/App.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/__tests__/App.test.js b/browser/app/js/__tests__/App.test.js index 842f4e145..d7f96e100 100644 --- a/browser/app/js/__tests__/App.test.js +++ b/browser/app/js/__tests__/App.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/__tests__/jsonrpc-test.js b/browser/app/js/__tests__/jsonrpc-test.js index 30d15b7de..65c511bb2 100644 --- a/browser/app/js/__tests__/jsonrpc-test.js +++ b/browser/app/js/__tests__/jsonrpc-test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2016 Minio, Inc. + * MinIO Cloud Storage (C) 2016 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/alert/Alert.js b/browser/app/js/alert/Alert.js index eb5a88ab4..926f5fbd7 100644 --- a/browser/app/js/alert/Alert.js +++ b/browser/app/js/alert/Alert.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/alert/AlertContainer.js b/browser/app/js/alert/AlertContainer.js index a36e9910d..cda1de544 100644 --- a/browser/app/js/alert/AlertContainer.js +++ b/browser/app/js/alert/AlertContainer.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/alert/__tests___/Alert.test.js b/browser/app/js/alert/__tests___/Alert.test.js index b3041d8f6..f21d4e9b3 100644 --- a/browser/app/js/alert/__tests___/Alert.test.js +++ b/browser/app/js/alert/__tests___/Alert.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/alert/__tests___/AlertContainer.test.js b/browser/app/js/alert/__tests___/AlertContainer.test.js index d41bc6f02..3b8ee6540 100644 --- a/browser/app/js/alert/__tests___/AlertContainer.test.js +++ b/browser/app/js/alert/__tests___/AlertContainer.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/alert/__tests___/actions.test.js b/browser/app/js/alert/__tests___/actions.test.js index a5f640cb1..33aa7ee24 100644 --- a/browser/app/js/alert/__tests___/actions.test.js +++ b/browser/app/js/alert/__tests___/actions.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/alert/__tests___/reducer.test.js b/browser/app/js/alert/__tests___/reducer.test.js index 002e6c9b1..d19a06732 100644 --- a/browser/app/js/alert/__tests___/reducer.test.js +++ b/browser/app/js/alert/__tests___/reducer.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/alert/actions.js b/browser/app/js/alert/actions.js index a04f69eb0..84b21440b 100644 --- a/browser/app/js/alert/actions.js +++ b/browser/app/js/alert/actions.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/alert/reducer.js b/browser/app/js/alert/reducer.js index 3bcd4fddb..65eab1ac4 100644 --- a/browser/app/js/alert/reducer.js +++ b/browser/app/js/alert/reducer.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/AboutModal.js b/browser/app/js/browser/AboutModal.js index 054526097..f35bd69a6 100644 --- a/browser/app/js/browser/AboutModal.js +++ b/browser/app/js/browser/AboutModal.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -32,7 +32,7 @@ export const AboutModal = ({ serverInfo, hideAbout }) => {
diff --git a/browser/app/js/browser/Browser.js b/browser/app/js/browser/Browser.js index a469351f7..a68f5322f 100644 --- a/browser/app/js/browser/Browser.js +++ b/browser/app/js/browser/Browser.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/BrowserDropdown.js b/browser/app/js/browser/BrowserDropdown.js index b04fad917..1015cc8fa 100644 --- a/browser/app/js/browser/BrowserDropdown.js +++ b/browser/app/js/browser/BrowserDropdown.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2016, 2017, 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2016, 2017, 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -98,12 +98,12 @@ export class BrowserDropdown extends React.Component {
  • - + Documentation
  • - + Ask for help
  • diff --git a/browser/app/js/browser/ChangePasswordModal.js b/browser/app/js/browser/ChangePasswordModal.js index 131c493b9..40fe022b2 100644 --- a/browser/app/js/browser/ChangePasswordModal.js +++ b/browser/app/js/browser/ChangePasswordModal.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2016, 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2016, 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/ConfirmModal.js b/browser/app/js/browser/ConfirmModal.js index 7fd4a2d20..e863204b3 100644 --- a/browser/app/js/browser/ConfirmModal.js +++ b/browser/app/js/browser/ConfirmModal.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2016, 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2016, 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/Header.js b/browser/app/js/browser/Header.js index 716873df8..53777b5f6 100644 --- a/browser/app/js/browser/Header.js +++ b/browser/app/js/browser/Header.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/Host.js b/browser/app/js/browser/Host.js index 233167332..66df83cde 100644 --- a/browser/app/js/browser/Host.js +++ b/browser/app/js/browser/Host.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2016, 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2016, 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/InputGroup.js b/browser/app/js/browser/InputGroup.js index dd49482d9..bdf746f92 100644 --- a/browser/app/js/browser/InputGroup.js +++ b/browser/app/js/browser/InputGroup.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2016, 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2016, 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/Login.js b/browser/app/js/browser/Login.js index d71aff162..a732a29f4 100644 --- a/browser/app/js/browser/Login.js +++ b/browser/app/js/browser/Login.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2016, 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2016, 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/MainActions.js b/browser/app/js/browser/MainActions.js index 74418d7e5..d71578ba8 100644 --- a/browser/app/js/browser/MainActions.js +++ b/browser/app/js/browser/MainActions.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/MainContent.js b/browser/app/js/browser/MainContent.js index fe5b038eb..2cfe179f1 100644 --- a/browser/app/js/browser/MainContent.js +++ b/browser/app/js/browser/MainContent.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/MobileHeader.js b/browser/app/js/browser/MobileHeader.js index e4633a9cd..248f86be2 100644 --- a/browser/app/js/browser/MobileHeader.js +++ b/browser/app/js/browser/MobileHeader.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/SideBar.js b/browser/app/js/browser/SideBar.js index c65adeeec..293fbabf1 100644 --- a/browser/app/js/browser/SideBar.js +++ b/browser/app/js/browser/SideBar.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2016, 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2016, 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/StorageInfo.js b/browser/app/js/browser/StorageInfo.js index daac5e409..fff0f222e 100644 --- a/browser/app/js/browser/StorageInfo.js +++ b/browser/app/js/browser/StorageInfo.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/__tests__/AboutModal.test.js b/browser/app/js/browser/__tests__/AboutModal.test.js index dd5690987..e5c6a5c81 100644 --- a/browser/app/js/browser/__tests__/AboutModal.test.js +++ b/browser/app/js/browser/__tests__/AboutModal.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/__tests__/Browser.test.js b/browser/app/js/browser/__tests__/Browser.test.js index 3bb5a0e45..b6e5c7336 100644 --- a/browser/app/js/browser/__tests__/Browser.test.js +++ b/browser/app/js/browser/__tests__/Browser.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/__tests__/BrowserDropdown.test.js b/browser/app/js/browser/__tests__/BrowserDropdown.test.js index c388bab5f..f8d192cee 100644 --- a/browser/app/js/browser/__tests__/BrowserDropdown.test.js +++ b/browser/app/js/browser/__tests__/BrowserDropdown.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/__tests__/ChangePasswordModal.test.js b/browser/app/js/browser/__tests__/ChangePasswordModal.test.js index 411cc938b..7917f3015 100644 --- a/browser/app/js/browser/__tests__/ChangePasswordModal.test.js +++ b/browser/app/js/browser/__tests__/ChangePasswordModal.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/__tests__/Header.test.js b/browser/app/js/browser/__tests__/Header.test.js index 7f9042e3a..b33cf4852 100644 --- a/browser/app/js/browser/__tests__/Header.test.js +++ b/browser/app/js/browser/__tests__/Header.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/__tests__/Host.test.js b/browser/app/js/browser/__tests__/Host.test.js index 6fcea1026..dda6a319b 100644 --- a/browser/app/js/browser/__tests__/Host.test.js +++ b/browser/app/js/browser/__tests__/Host.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/__tests__/Login.test.js b/browser/app/js/browser/__tests__/Login.test.js index 647f28a6b..a24b08628 100644 --- a/browser/app/js/browser/__tests__/Login.test.js +++ b/browser/app/js/browser/__tests__/Login.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/__tests__/MainActions.test.js b/browser/app/js/browser/__tests__/MainActions.test.js index 3b12fea05..66d047402 100644 --- a/browser/app/js/browser/__tests__/MainActions.test.js +++ b/browser/app/js/browser/__tests__/MainActions.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/__tests__/MainContent.test.js b/browser/app/js/browser/__tests__/MainContent.test.js index 92c212c84..6a0e6043a 100644 --- a/browser/app/js/browser/__tests__/MainContent.test.js +++ b/browser/app/js/browser/__tests__/MainContent.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/__tests__/MobileHeader.test.js b/browser/app/js/browser/__tests__/MobileHeader.test.js index d6dbd92e0..ccd0c4d75 100644 --- a/browser/app/js/browser/__tests__/MobileHeader.test.js +++ b/browser/app/js/browser/__tests__/MobileHeader.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/__tests__/SideBar.test.js b/browser/app/js/browser/__tests__/SideBar.test.js index 2a2132638..7e8850381 100644 --- a/browser/app/js/browser/__tests__/SideBar.test.js +++ b/browser/app/js/browser/__tests__/SideBar.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/__tests__/StorageInfo.test.js b/browser/app/js/browser/__tests__/StorageInfo.test.js index 5811e3ecd..53be7b6c0 100644 --- a/browser/app/js/browser/__tests__/StorageInfo.test.js +++ b/browser/app/js/browser/__tests__/StorageInfo.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/__tests__/actions.test.js b/browser/app/js/browser/__tests__/actions.test.js index 476e80f5b..f871a4ce5 100644 --- a/browser/app/js/browser/__tests__/actions.test.js +++ b/browser/app/js/browser/__tests__/actions.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/__tests__/reducer.test.js b/browser/app/js/browser/__tests__/reducer.test.js index 968f60e8e..2df34edb7 100644 --- a/browser/app/js/browser/__tests__/reducer.test.js +++ b/browser/app/js/browser/__tests__/reducer.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/actions.js b/browser/app/js/browser/actions.js index 390ddc85b..5ef260906 100644 --- a/browser/app/js/browser/actions.js +++ b/browser/app/js/browser/actions.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/browser/reducer.js b/browser/app/js/browser/reducer.js index 1e1789aef..59d87f426 100644 --- a/browser/app/js/browser/reducer.js +++ b/browser/app/js/browser/reducer.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/Bucket.js b/browser/app/js/buckets/Bucket.js index 25cddf6d7..06600b591 100644 --- a/browser/app/js/buckets/Bucket.js +++ b/browser/app/js/buckets/Bucket.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/BucketContainer.js b/browser/app/js/buckets/BucketContainer.js index 39d69ca25..767716f42 100644 --- a/browser/app/js/buckets/BucketContainer.js +++ b/browser/app/js/buckets/BucketContainer.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/BucketDropdown.js b/browser/app/js/buckets/BucketDropdown.js index 3f7654df0..06a0bfea0 100644 --- a/browser/app/js/buckets/BucketDropdown.js +++ b/browser/app/js/buckets/BucketDropdown.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/BucketList.js b/browser/app/js/buckets/BucketList.js index 0814413b0..fbd1afd20 100644 --- a/browser/app/js/buckets/BucketList.js +++ b/browser/app/js/buckets/BucketList.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/BucketPolicyModal.js b/browser/app/js/buckets/BucketPolicyModal.js index 4b7d8ece0..99df1549a 100644 --- a/browser/app/js/buckets/BucketPolicyModal.js +++ b/browser/app/js/buckets/BucketPolicyModal.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/BucketSearch.js b/browser/app/js/buckets/BucketSearch.js index ac1b6e1ea..d4d468660 100644 --- a/browser/app/js/buckets/BucketSearch.js +++ b/browser/app/js/buckets/BucketSearch.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/MakeBucketModal.js b/browser/app/js/buckets/MakeBucketModal.js index a16645801..45bc761bd 100644 --- a/browser/app/js/buckets/MakeBucketModal.js +++ b/browser/app/js/buckets/MakeBucketModal.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/Policy.js b/browser/app/js/buckets/Policy.js index 2de8d8ca8..1887a60e8 100644 --- a/browser/app/js/buckets/Policy.js +++ b/browser/app/js/buckets/Policy.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/PolicyInput.js b/browser/app/js/buckets/PolicyInput.js index 2ed103262..084277266 100644 --- a/browser/app/js/buckets/PolicyInput.js +++ b/browser/app/js/buckets/PolicyInput.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/__tests__/Bucket.test.js b/browser/app/js/buckets/__tests__/Bucket.test.js index b25fb90e0..1b76e0fb6 100644 --- a/browser/app/js/buckets/__tests__/Bucket.test.js +++ b/browser/app/js/buckets/__tests__/Bucket.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/__tests__/BucketContainer.test.js b/browser/app/js/buckets/__tests__/BucketContainer.test.js index 2c3807d8a..b0b561710 100644 --- a/browser/app/js/buckets/__tests__/BucketContainer.test.js +++ b/browser/app/js/buckets/__tests__/BucketContainer.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/__tests__/BucketDropdown.test.js b/browser/app/js/buckets/__tests__/BucketDropdown.test.js index 6aeb5f03a..f391fd063 100644 --- a/browser/app/js/buckets/__tests__/BucketDropdown.test.js +++ b/browser/app/js/buckets/__tests__/BucketDropdown.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/__tests__/BucketList.test.js b/browser/app/js/buckets/__tests__/BucketList.test.js index 3c88fb215..9239b2f39 100644 --- a/browser/app/js/buckets/__tests__/BucketList.test.js +++ b/browser/app/js/buckets/__tests__/BucketList.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/__tests__/BucketPolicyModal.test.js b/browser/app/js/buckets/__tests__/BucketPolicyModal.test.js index fa86f77eb..f4d3a5574 100644 --- a/browser/app/js/buckets/__tests__/BucketPolicyModal.test.js +++ b/browser/app/js/buckets/__tests__/BucketPolicyModal.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/__tests__/BucketSearch.test.js b/browser/app/js/buckets/__tests__/BucketSearch.test.js index 082c03f2a..adab02f9a 100644 --- a/browser/app/js/buckets/__tests__/BucketSearch.test.js +++ b/browser/app/js/buckets/__tests__/BucketSearch.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/__tests__/MakeBucketModal.test.js b/browser/app/js/buckets/__tests__/MakeBucketModal.test.js index 1d956ac79..72408d074 100644 --- a/browser/app/js/buckets/__tests__/MakeBucketModal.test.js +++ b/browser/app/js/buckets/__tests__/MakeBucketModal.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/__tests__/Policy.test.js b/browser/app/js/buckets/__tests__/Policy.test.js index 12895b34d..045664808 100644 --- a/browser/app/js/buckets/__tests__/Policy.test.js +++ b/browser/app/js/buckets/__tests__/Policy.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/__tests__/PolicyInput.test.js b/browser/app/js/buckets/__tests__/PolicyInput.test.js index a3d961cd2..047c9c1a1 100644 --- a/browser/app/js/buckets/__tests__/PolicyInput.test.js +++ b/browser/app/js/buckets/__tests__/PolicyInput.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/__tests__/actions.test.js b/browser/app/js/buckets/__tests__/actions.test.js index dd77600d5..d98b21020 100644 --- a/browser/app/js/buckets/__tests__/actions.test.js +++ b/browser/app/js/buckets/__tests__/actions.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/__tests__/reducer.test.js b/browser/app/js/buckets/__tests__/reducer.test.js index 96b729ea7..ea888fe08 100644 --- a/browser/app/js/buckets/__tests__/reducer.test.js +++ b/browser/app/js/buckets/__tests__/reducer.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/__tests__/selectors.test.js b/browser/app/js/buckets/__tests__/selectors.test.js index c4dd41b0f..36d0b3eeb 100644 --- a/browser/app/js/buckets/__tests__/selectors.test.js +++ b/browser/app/js/buckets/__tests__/selectors.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/actions.js b/browser/app/js/buckets/actions.js index 562a0049f..babbe142b 100644 --- a/browser/app/js/buckets/actions.js +++ b/browser/app/js/buckets/actions.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/reducer.js b/browser/app/js/buckets/reducer.js index ed4d556fb..530822a65 100644 --- a/browser/app/js/buckets/reducer.js +++ b/browser/app/js/buckets/reducer.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/buckets/selectors.js b/browser/app/js/buckets/selectors.js index 97cfa12fe..a4fa4a731 100644 --- a/browser/app/js/buckets/selectors.js +++ b/browser/app/js/buckets/selectors.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/components/BrowserUpdate.js b/browser/app/js/components/BrowserUpdate.js index 5eaae8233..8468cb0a9 100644 --- a/browser/app/js/components/BrowserUpdate.js +++ b/browser/app/js/components/BrowserUpdate.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2016 Minio, Inc. + * MinIO Cloud Storage (C) 2016 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/constants.js b/browser/app/js/constants.js index 569029665..99e28d6a7 100644 --- a/browser/app/js/constants.js +++ b/browser/app/js/constants.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2016 Minio, Inc. + * MinIO Cloud Storage (C) 2016 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/history.js b/browser/app/js/history.js index a88e3740c..0a6408a31 100644 --- a/browser/app/js/history.js +++ b/browser/app/js/history.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/jest/setup.js b/browser/app/js/jest/setup.js index d5d001620..0ec2947c0 100644 --- a/browser/app/js/jest/setup.js +++ b/browser/app/js/jest/setup.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/jsonrpc.js b/browser/app/js/jsonrpc.js index ece92ee1b..8a01e2504 100644 --- a/browser/app/js/jsonrpc.js +++ b/browser/app/js/jsonrpc.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2016 Minio, Inc. + * MinIO Cloud Storage (C) 2016 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/loader.js b/browser/app/js/loader.js index a8e6ed1a3..05b8c6a3c 100644 --- a/browser/app/js/loader.js +++ b/browser/app/js/loader.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/mime.js b/browser/app/js/mime.js index aed2e753d..ccf4bfaa0 100644 --- a/browser/app/js/mime.js +++ b/browser/app/js/mime.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2016 Minio, Inc. + * MinIO Cloud Storage (C) 2016 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/DeleteObjectConfirmModal.js b/browser/app/js/objects/DeleteObjectConfirmModal.js index af88ec98b..5a81dc1dc 100644 --- a/browser/app/js/objects/DeleteObjectConfirmModal.js +++ b/browser/app/js/objects/DeleteObjectConfirmModal.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/ObjectActions.js b/browser/app/js/objects/ObjectActions.js index d6e80667f..b475c7bf1 100644 --- a/browser/app/js/objects/ObjectActions.js +++ b/browser/app/js/objects/ObjectActions.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/ObjectContainer.js b/browser/app/js/objects/ObjectContainer.js index 63ba92b99..7461104d4 100644 --- a/browser/app/js/objects/ObjectContainer.js +++ b/browser/app/js/objects/ObjectContainer.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/ObjectItem.js b/browser/app/js/objects/ObjectItem.js index 967468c4f..ee05882ea 100644 --- a/browser/app/js/objects/ObjectItem.js +++ b/browser/app/js/objects/ObjectItem.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/ObjectsBulkActions.js b/browser/app/js/objects/ObjectsBulkActions.js index 3d72ab262..9e7d9a5db 100644 --- a/browser/app/js/objects/ObjectsBulkActions.js +++ b/browser/app/js/objects/ObjectsBulkActions.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/ObjectsHeader.js b/browser/app/js/objects/ObjectsHeader.js index 331595f19..88a0340be 100644 --- a/browser/app/js/objects/ObjectsHeader.js +++ b/browser/app/js/objects/ObjectsHeader.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/ObjectsList.js b/browser/app/js/objects/ObjectsList.js index 75bbaa6e0..3af3314a9 100644 --- a/browser/app/js/objects/ObjectsList.js +++ b/browser/app/js/objects/ObjectsList.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2016, 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2016, 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/ObjectsListContainer.js b/browser/app/js/objects/ObjectsListContainer.js index 4901062d0..7b4d11a81 100644 --- a/browser/app/js/objects/ObjectsListContainer.js +++ b/browser/app/js/objects/ObjectsListContainer.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/ObjectsSection.js b/browser/app/js/objects/ObjectsSection.js index f37d791aa..ac5b5a7bd 100644 --- a/browser/app/js/objects/ObjectsSection.js +++ b/browser/app/js/objects/ObjectsSection.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/Path.js b/browser/app/js/objects/Path.js index f28f241dd..3785f459b 100644 --- a/browser/app/js/objects/Path.js +++ b/browser/app/js/objects/Path.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2016 Minio, Inc. + * MinIO Cloud Storage (C) 2016 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/PrefixContainer.js b/browser/app/js/objects/PrefixContainer.js index 78dacc2ca..d88fc894e 100644 --- a/browser/app/js/objects/PrefixContainer.js +++ b/browser/app/js/objects/PrefixContainer.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/ShareObjectModal.js b/browser/app/js/objects/ShareObjectModal.js index 5c82eb1b2..ed13bc9e9 100644 --- a/browser/app/js/objects/ShareObjectModal.js +++ b/browser/app/js/objects/ShareObjectModal.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/__tests__/DeleteObjectConfirmModal.test.js b/browser/app/js/objects/__tests__/DeleteObjectConfirmModal.test.js index d5536a225..1f5bed676 100644 --- a/browser/app/js/objects/__tests__/DeleteObjectConfirmModal.test.js +++ b/browser/app/js/objects/__tests__/DeleteObjectConfirmModal.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/__tests__/ObjectActions.test.js b/browser/app/js/objects/__tests__/ObjectActions.test.js index bdac875ab..6c90c02c4 100644 --- a/browser/app/js/objects/__tests__/ObjectActions.test.js +++ b/browser/app/js/objects/__tests__/ObjectActions.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/__tests__/ObjectContainer.test.js b/browser/app/js/objects/__tests__/ObjectContainer.test.js index edffdf09b..be9519636 100644 --- a/browser/app/js/objects/__tests__/ObjectContainer.test.js +++ b/browser/app/js/objects/__tests__/ObjectContainer.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/__tests__/ObjectItem.test.js b/browser/app/js/objects/__tests__/ObjectItem.test.js index 0d7ff61e9..c00d9eaa2 100644 --- a/browser/app/js/objects/__tests__/ObjectItem.test.js +++ b/browser/app/js/objects/__tests__/ObjectItem.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/__tests__/ObjectsBulkActions.test.js b/browser/app/js/objects/__tests__/ObjectsBulkActions.test.js index 2a315fd4f..0dd73b385 100644 --- a/browser/app/js/objects/__tests__/ObjectsBulkActions.test.js +++ b/browser/app/js/objects/__tests__/ObjectsBulkActions.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/__tests__/ObjectsHeader.test.js b/browser/app/js/objects/__tests__/ObjectsHeader.test.js index dfc86f632..b7d079d99 100644 --- a/browser/app/js/objects/__tests__/ObjectsHeader.test.js +++ b/browser/app/js/objects/__tests__/ObjectsHeader.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/__tests__/ObjectsList.test.js b/browser/app/js/objects/__tests__/ObjectsList.test.js index 72bb3eed1..3ecd5b975 100644 --- a/browser/app/js/objects/__tests__/ObjectsList.test.js +++ b/browser/app/js/objects/__tests__/ObjectsList.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/__tests__/ObjectsListContainer.test.js b/browser/app/js/objects/__tests__/ObjectsListContainer.test.js index dbc009e03..805967ee6 100644 --- a/browser/app/js/objects/__tests__/ObjectsListContainer.test.js +++ b/browser/app/js/objects/__tests__/ObjectsListContainer.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/__tests__/ObjectsSection.test.js b/browser/app/js/objects/__tests__/ObjectsSection.test.js index 817be33fa..9dd90cef5 100644 --- a/browser/app/js/objects/__tests__/ObjectsSection.test.js +++ b/browser/app/js/objects/__tests__/ObjectsSection.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/__tests__/Path.test.js b/browser/app/js/objects/__tests__/Path.test.js index 00952c14e..259262740 100644 --- a/browser/app/js/objects/__tests__/Path.test.js +++ b/browser/app/js/objects/__tests__/Path.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/__tests__/PrefixContainer.test.js b/browser/app/js/objects/__tests__/PrefixContainer.test.js index 7ae27a0bb..fef61a186 100644 --- a/browser/app/js/objects/__tests__/PrefixContainer.test.js +++ b/browser/app/js/objects/__tests__/PrefixContainer.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/__tests__/ShareObjectModal.test.js b/browser/app/js/objects/__tests__/ShareObjectModal.test.js index 793a4bcce..58edd1aaa 100644 --- a/browser/app/js/objects/__tests__/ShareObjectModal.test.js +++ b/browser/app/js/objects/__tests__/ShareObjectModal.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/__tests__/actions.test.js b/browser/app/js/objects/__tests__/actions.test.js index 6d2da8129..1ee2d8f98 100644 --- a/browser/app/js/objects/__tests__/actions.test.js +++ b/browser/app/js/objects/__tests__/actions.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/__tests__/reducer.test.js b/browser/app/js/objects/__tests__/reducer.test.js index 26943d986..1a0de01d8 100644 --- a/browser/app/js/objects/__tests__/reducer.test.js +++ b/browser/app/js/objects/__tests__/reducer.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/actions.js b/browser/app/js/objects/actions.js index c89bb0208..2940cc99e 100644 --- a/browser/app/js/objects/actions.js +++ b/browser/app/js/objects/actions.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/reducer.js b/browser/app/js/objects/reducer.js index 8b9888dc3..0357f99eb 100644 --- a/browser/app/js/objects/reducer.js +++ b/browser/app/js/objects/reducer.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/objects/selectors.js b/browser/app/js/objects/selectors.js index f1978acf6..1943d70b5 100644 --- a/browser/app/js/objects/selectors.js +++ b/browser/app/js/objects/selectors.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/reducers.js b/browser/app/js/reducers.js index 60aac6bd8..59c9b77f2 100644 --- a/browser/app/js/reducers.js +++ b/browser/app/js/reducers.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/store/configure-store.js b/browser/app/js/store/configure-store.js index 57c863fdc..59546bbcf 100644 --- a/browser/app/js/store/configure-store.js +++ b/browser/app/js/store/configure-store.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/uploads/AbortConfirmModal.js b/browser/app/js/uploads/AbortConfirmModal.js index 9958d8fb5..9ca747447 100644 --- a/browser/app/js/uploads/AbortConfirmModal.js +++ b/browser/app/js/uploads/AbortConfirmModal.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/uploads/Dropzone.js b/browser/app/js/uploads/Dropzone.js index 9e03f5eec..7792306b3 100644 --- a/browser/app/js/uploads/Dropzone.js +++ b/browser/app/js/uploads/Dropzone.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2016, 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2016, 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/uploads/UploadModal.js b/browser/app/js/uploads/UploadModal.js index df4c36841..39802171d 100644 --- a/browser/app/js/uploads/UploadModal.js +++ b/browser/app/js/uploads/UploadModal.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/uploads/__tests__/AbortConfirmModal.test.js b/browser/app/js/uploads/__tests__/AbortConfirmModal.test.js index 1dcdd99a3..61ecb203e 100644 --- a/browser/app/js/uploads/__tests__/AbortConfirmModal.test.js +++ b/browser/app/js/uploads/__tests__/AbortConfirmModal.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/uploads/__tests__/Dropzone.test.js b/browser/app/js/uploads/__tests__/Dropzone.test.js index ce18431ff..a1c4185de 100644 --- a/browser/app/js/uploads/__tests__/Dropzone.test.js +++ b/browser/app/js/uploads/__tests__/Dropzone.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/uploads/__tests__/UploadModal.test.js b/browser/app/js/uploads/__tests__/UploadModal.test.js index 000593f13..01b80bc5d 100644 --- a/browser/app/js/uploads/__tests__/UploadModal.test.js +++ b/browser/app/js/uploads/__tests__/UploadModal.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/uploads/__tests__/actions.test.js b/browser/app/js/uploads/__tests__/actions.test.js index 35ec20546..714d90a30 100644 --- a/browser/app/js/uploads/__tests__/actions.test.js +++ b/browser/app/js/uploads/__tests__/actions.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/uploads/__tests__/reducer.test.js b/browser/app/js/uploads/__tests__/reducer.test.js index 5099d504c..a684f156b 100644 --- a/browser/app/js/uploads/__tests__/reducer.test.js +++ b/browser/app/js/uploads/__tests__/reducer.test.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/uploads/actions.js b/browser/app/js/uploads/actions.js index 05e9d4208..33a756148 100644 --- a/browser/app/js/uploads/actions.js +++ b/browser/app/js/uploads/actions.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/uploads/reducer.js b/browser/app/js/uploads/reducer.js index 8b49390d1..42871d817 100644 --- a/browser/app/js/uploads/reducer.js +++ b/browser/app/js/uploads/reducer.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/utils.js b/browser/app/js/utils.js index 91afff20c..2c54001ec 100644 --- a/browser/app/js/utils.js +++ b/browser/app/js/utils.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2016 Minio, Inc. + * MinIO Cloud Storage (C) 2016 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/app/js/web.js b/browser/app/js/web.js index 147cd203e..d21e8ad7d 100644 --- a/browser/app/js/web.js +++ b/browser/app/js/web.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2016, 2018 Minio, Inc. + * MinIO Cloud Storage (C) 2016, 2018 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -39,7 +39,7 @@ class Web { } if (err.status) throw new Error(`Server returned error [${err.status}]`) - throw new Error('Minio server is unreachable') + throw new Error('MinIO server is unreachable') }) .then(res => { let json = JSON.parse(res.text) diff --git a/browser/build.js b/browser/build.js index 3a29459af..469c0c22f 100644 --- a/browser/build.js +++ b/browser/build.js @@ -1,5 +1,5 @@ /* - * Minio Cloud Storage (C) 2016 Minio, Inc. + * MinIO Cloud Storage (C) 2016 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/browser/package.json b/browser/package.json index ea6657d6f..eb93c452b 100644 --- a/browser/package.json +++ b/browser/package.json @@ -1,7 +1,7 @@ { "name": "browser", "version": "0.0.1", - "description": "Minio Browser", + "description": "MinIO Browser", "scripts": { "test": "jest", "dev": "NODE_ENV=dev webpack-dev-server --devtool cheap-module-eval-source-map --progress --colors --hot --content-base dev", @@ -21,7 +21,7 @@ "type": "git", "url": "https://github.com/minio/minio" }, - "author": "Minio Inc", + "author": "MinIO Inc", "license": "Apache-2.0", "bugs": { "url": "https://github.com/minio/minio/issues" diff --git a/browser/ui-assets.go b/browser/ui-assets.go index 2ee8e49d9..b61458d76 100644 --- a/browser/ui-assets.go +++ b/browser/ui-assets.go @@ -230,7 +230,7 @@ var _productionIndex_bundle20190323t111439zJs = []byte(`!function(A){var t={};fu /*! * Programatically add the following */ -for(I=97;I<123;I++)M[String.fromCharCode(I)]=I-32;for(var I=48;I<58;I++)M[I-48]=I;for(I=1;I<13;I++)M["f"+I]=I+111;for(I=0;I<10;I++)M["numpad "+I]=I+96;var g=t.names=t.title={};for(I in M)g[M[I]]=I;for(var i in e)M[i]=e[i]},function(A,t,M){"use strict";t.__esModule=!0;var e,I=M(568),g=(e=I)&&e.__esModule?e:{default:e};t.default=(0,g.default)({shouldComponentUpdate:function(){return!this._notifying}},function(A,t,M,e,I){M&&(A._notifying=!0,M.call.apply(M,[A,e].concat(I)),A._notifying=!1),A._values[t]=e,A.unmounted||A.forceUpdate()}),A.exports=t.default},function(A,t){var M={}.hasOwnProperty;A.exports=function(A,t){return M.call(A,t)}},function(A,t,M){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var e=function(){function A(A,t){for(var M=0;M"+I+""};A.exports=function(A,t){var M={};M[A]=t(n),e(e.P+e.F*I(function(){var t=""[A]('"');return t!==t.toLowerCase()||t.split('"').length>3}),"String",M)}},function(A,t,M){var e=M(99),I=M(59),g=M(34),i=M(43),n=M(28),o=M(200),E=Object.getOwnPropertyDescriptor;t.f=M(22)?E:function(A,t){if(A=g(A),t=i(t,!0),o)try{return E(A,t)}catch(A){}if(n(A,t))return I(!e.f.call(A,t),A[t])}},function(A,t,M){var e=M(28),I=M(25),g=M(136)("IE_PROTO"),i=Object.prototype;A.exports=Object.getPrototypeOf||function(A){return A=I(A),e(A,g)?A[g]:"function"==typeof A.constructor&&A instanceof A.constructor?A.constructor.prototype:A instanceof Object?i:null}},function(A,t,M){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.downloadCheckedObjects=t.resetCheckedList=t.uncheckObject=t.checkObject=t.downloadObject=t.hideShareObject=t.showShareObject=t.shareObject=t.deleteCheckedObjects=t.removeObject=t.deleteObject=t.setPrefixWritable=t.setCurrentPrefix=t.selectPrefix=t.setSortOrder=t.setSortBy=t.sortObjects=t.fetchObjects=t.appendList=t.resetList=t.setList=t.CHECKED_LIST_RESET=t.CHECKED_LIST_REMOVE=t.CHECKED_LIST_ADD=t.SET_SHARE_OBJECT=t.SET_PREFIX_WRITABLE=t.SET_CURRENT_PREFIX=t.SET_SORT_ORDER=t.SET_SORT_BY=t.REMOVE=t.APPEND_LIST=t.RESET_LIST=t.SET_LIST=void 0;var e=Object.assign||function(A){for(var t=1;t1?"-":"";e.href=g,e.download=t.bucketName+i+t.prefix.slice(0,-1)+".zip",e.click(),window.URL.revokeObjectURL(g),e.remove()}},I.send(JSON.stringify(t))})},function(A,t){var M={}.toString;A.exports=function(A){return M.call(A).slice(8,-1)}},function(A,t){A.exports=function(A){if(null==A)throw TypeError("Can't call method on "+A);return A}},function(A,t,M){var e=M(17);A.exports=function(A,t){return!!A&&e(function(){t?A.call(null,function(){},1):A.call(null)})}},function(A,t,M){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.hideBucketPolicy=t.showBucketPolicy=t.setPolicies=t.fetchPolicies=t.hideMakeBucketModal=t.showMakeBucketModal=t.removeBucket=t.addBucket=t.deleteBucket=t.makeBucket=t.setCurrentBucket=t.selectBucket=t.setFilter=t.setList=t.fetchBuckets=t.SET_POLICIES=t.SHOW_BUCKET_POLICY=t.SHOW_MAKE_BUCKET_MODAL=t.SET_CURRENT_BUCKET=t.SET_FILTER=t.REMOVE=t.ADD=t.SET_LIST=void 0;var e=E(M(29)),I=E(M(101)),g=o(M(47)),i=o(M(38)),n=M(165);function o(A){if(A&&A.__esModule)return A;var t={};if(null!=A)for(var M in A)Object.prototype.hasOwnProperty.call(A,M)&&(t[M]=A[M]);return t.default=A,t}function E(A){return A&&A.__esModule?A:{default:A}}var T=t.SET_LIST="buckets/SET_LIST",N=t.ADD="buckets/ADD",c=t.REMOVE="buckets/REMOVE",a=t.SET_FILTER="buckets/SET_FILTER",r=t.SET_CURRENT_BUCKET="buckets/SET_CURRENT_BUCKET",C=t.SHOW_MAKE_BUCKET_MODAL="buckets/SHOW_MAKE_BUCKET_MODAL",D=t.SHOW_BUCKET_POLICY="buckets/SHOW_BUCKET_POLICY",B=t.SET_POLICIES="buckets/SET_POLICIES",Q=t.fetchBuckets=function(){return function(A){return e.default.ListBuckets().then(function(t){var M=t.buckets?t.buckets.map(function(A){return A.name}):[];if(A(s(M)),M.length>0){var e=(0,n.pathSlice)(I.default.location.pathname),g=e.bucket,i=e.prefix;g&&M.indexOf(g)>-1?A(l(g,i)):A(l(M[0]))}else A(l("")),I.default.replace("/")})}},s=t.setList=function(A){return{type:T,buckets:A}},l=(t.setFilter=function(A){return{type:a,filter:A}},t.selectBucket=function(A,t){return function(M){M(u(A)),M(i.selectPrefix(t||""))}}),u=t.setCurrentBucket=function(A){return{type:r,bucket:A}},y=(t.makeBucket=function(A){return function(t){return e.default.MakeBucket({bucketName:A}).then(function(){t(y(A)),t(l(A))}).catch(function(A){return t(g.set({type:"danger",message:A.message}))})}},t.deleteBucket=function(A){return function(t){return e.default.DeleteBucket({bucketName:A}).then(function(){t(g.set({type:"info",message:"Bucket '"+A+"' has been deleted."})),t(x(A)),t(Q())}).catch(function(A){t(g.set({type:"danger",message:A.message}))})}},t.addBucket=function(A){return{type:N,bucket:A}}),x=t.removeBucket=function(A){return{type:c,bucket:A}},w=(t.showMakeBucketModal=function(){return{type:C,show:!0}},t.hideMakeBucketModal=function(){return{type:C,show:!1}},t.fetchPolicies=function(A){return function(t){return e.default.ListAllBucketPolicies({bucketName:A}).then(function(A){var M=A.policies;t(w(M||[]))}).catch(function(A){t(g.set({type:"danger",message:A.message}))})}},t.setPolicies=function(A){return{type:B,policies:A}});t.showBucketPolicy=function(){return{type:D,show:!0}},t.hideBucketPolicy=function(){return{type:D,show:!1}}},function(A,t,M){var e=M(19);A.exports=function(A,t){if(!e(A))return A;var M,I;if(t&&"function"==typeof(M=A.toString)&&!e(I=M.call(A)))return I;if("function"==typeof(M=A.valueOf)&&!e(I=M.call(A)))return I;if(!t&&"function"==typeof(M=A.toString)&&!e(I=M.call(A)))return I;throw TypeError("Can't convert object to primitive value")}},function(A,t,M){var e=M(8),I=M(54),g=M(17);A.exports=function(A,t){var M=(I.Object||{})[A]||Object[A],i={};i[A]=t(M),e(e.S+e.F*g(function(){M(1)}),"Object",i)}},function(A,t,M){var e=M(55),I=M(98),g=M(25),i=M(24),n=M(365);A.exports=function(A,t){var M=1==A,o=2==A,E=3==A,T=4==A,N=6==A,c=5==A||N,a=t||n;return function(t,n,r){for(var C,D,B=g(t),Q=I(B),s=e(n,r,3),l=i(Q.length),u=0,y=M?a(t,l):o?a(t,0):void 0;l>u;u++)if((c||u in Q)&&(D=s(C=Q[u],u,B),A))if(M)y[u]=D;else if(D)switch(A){case 3:return!0;case 5:return C;case 6:return u;case 2:y.push(C)}else if(T)return!1;return N?-1:E||T?T:y}}},function(A,t,M){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var e=window.location.pathname;t.minioBrowserPrefix=e.slice(0,e.indexOf("/",1)),t.READ_ONLY="readonly",t.WRITE_ONLY="writeonly",t.READ_WRITE="readwrite",t.NONE="none",t.SHARE_OBJECT_EXPIRY_DAYS=5,t.SHARE_OBJECT_EXPIRY_HOURS=0,t.SHARE_OBJECT_EXPIRY_MINUTES=0},function(A,t,M){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var e=t.SET="alert/SET",I=t.CLEAR="alert/CLEAR",g=t.alertId=0;t.set=function(A){var M=(t.alertId=g+=1,g-1);return function(t,g){("danger"!==A.type||A.autoClear)&&setTimeout(function(){t({type:I,alert:{id:M}})},5e3),t({type:e,alert:Object.assign({},A,{id:M})})}},t.clear=function(){return{type:I}}},function(A,t){var M=A.exports={version:"2.4.0"};"number"==typeof __e&&(__e=M)},function(A,t,M){var e=M(172)("wks"),I=M(124),g=M(63).Symbol,i="function"==typeof g;(A.exports=function(A){return e[A]||(e[A]=i&&g[A]||(i?g:I)("Symbol."+A))}).store=e},function(A,t,M){"use strict";M.r(t);var e={};M.r(e),M.d(e,"prefix",function(){return R}),M.d(e,"bsClass",function(){return k}),M.d(e,"bsStyles",function(){return G}),M.d(e,"bsSizes",function(){return J}),M.d(e,"getClassSet",function(){return b}),M.d(e,"splitBsProps",function(){return V}),M.d(e,"splitBsPropsAndOmit",function(){return X}),M.d(e,"addStyle",function(){return W}),M.d(e,"_curry",function(){return P});var I={};M.r(I),M.d(I,"bootstrapUtils",function(){return e}),M.d(I,"createChainedFunction",function(){return QA}),M.d(I,"ValidComponentChildren",function(){return K});var g=M(2),i=M.n(g),n=M(4),o=M.n(n),E=M(3),T=M.n(E),N=M(5),c=M.n(N),a=M(1),r=M.n(a),C=M(7),D=M.n(C),B=M(6),Q=M.n(B),s=M(0),l=M.n(s),u=M(27),y=M.n(u),x=M(94),w=M.n(x),j=M(16),Y=M.n(j),d="large",h="small",L="xsmall",S={large:"lg",medium:"md",small:"sm",xsmall:"xs",lg:"lg",md:"md",sm:"sm",xs:"xs"},z=["lg","md","sm","xs"],U={SUCCESS:"success",WARNING:"warning",DANGER:"danger",INFO:"info"},p="default",f="primary",F="link",m="inverse";function O(A){return function(){for(var t=arguments.length,M=Array(t),e=0;e1?t-1:0),e=1;e1?t-1:0),e=1;e=A.children.length&&this.setState({activeIndex:0,previousActiveIndex:null,direction:null})},t.prototype.componentWillUnmount=function(){clearTimeout(this.timeout),this.isUnmounted=!0},t.prototype.getActiveIndex=function(){var A=this.props.activeIndex;return null!=A?A:this.state.activeIndex},t.prototype.getDirection=function(A,t){return A===t?null:A>t?"prev":"next"},t.prototype.handleItemAnimateOutEnd=function(){var A=this;this.setState({previousActiveIndex:null,direction:null},function(){A.waitForNext(),A.props.onSlideEnd&&A.props.onSlideEnd()})},t.prototype.handleMouseOut=function(){this.isPaused&&this.play()},t.prototype.handleMouseOver=function(){this.props.pauseOnHover&&this.pause()},t.prototype.handleNext=function(A){var t=this.getActiveIndex()+1;if(t>K.count(this.props.children)-1){if(!this.props.wrap)return;t=0}this.select(t,A,"next")},t.prototype.handlePrev=function(A){var t=this.getActiveIndex()-1;if(t<0){if(!this.props.wrap)return;t=K.count(this.props.children)-1}this.select(t,A,"prev")},t.prototype.pause=function(){this.isPaused=!0,clearTimeout(this.timeout)},t.prototype.play=function(){this.isPaused=!1,this.waitForNext()},t.prototype.select=function(A,t,M){if(clearTimeout(this.timeout),!this.isUnmounted){var e=this.props.slide?this.getActiveIndex():null;M=M||this.getDirection(e,A);var I=this.props.onSelect;if(I&&(I.length>1?(t?(t.persist(),t.direction=M):t={direction:M},I(A,t)):I(A)),null==this.props.activeIndex&&A!==e){if(null!=this.state.previousActiveIndex)return;this.setState({activeIndex:A,previousActiveIndex:e,direction:M})}}},t.prototype.waitForNext=function(){var A=this.props,t=A.slide,M=A.interval,e=A.activeIndex;!this.isPaused&&t&&M&&null==e&&(this.timeout=setTimeout(this.handleNext,M))},t.prototype.renderControls=function(A){var t=A.wrap,M=A.children,e=A.activeIndex,I=A.prevIcon,g=A.nextIcon,i=A.bsProps,n=A.prevLabel,o=A.nextLabel,E=R(i,"control"),T=K.count(M);return[(t||0!==e)&&r.a.createElement(yA,{key:"prev",className:Q()(E,"left"),onClick:this.handlePrev},I,n&&r.a.createElement("span",{className:"sr-only"},n)),(t||e!==T-1)&&r.a.createElement(yA,{key:"next",className:Q()(E,"right"),onClick:this.handleNext},g,o&&r.a.createElement("span",{className:"sr-only"},o))]},t.prototype.renderIndicators=function(A,t,M){var e=this,I=[];return K.forEach(A,function(A,M){I.push(r.a.createElement("li",{key:M,className:M===t?"active":null,onClick:function(A){return e.select(M,A)}})," ")}),r.a.createElement("ol",{className:R(M,"indicators")},I)},t.prototype.render=function(){var A=this,t=this.props,M=t.slide,e=t.indicators,I=t.controls,g=t.wrap,n=t.prevIcon,o=t.prevLabel,E=t.nextIcon,T=t.nextLabel,N=t.className,c=t.children,C=D()(t,["slide","indicators","controls","wrap","prevIcon","prevLabel","nextIcon","nextLabel","className","children"]),B=this.state,s=B.previousActiveIndex,l=B.direction,u=X(C,["interval","pauseOnHover","onSelect","onSlideEnd","activeIndex","defaultActiveIndex","direction"]),y=u[0],x=u[1],w=this.getActiveIndex(),j=i()({},b(y),{slide:M});return r.a.createElement("div",i()({},x,{className:Q()(N,j),onMouseOver:this.handleMouseOver,onMouseOut:this.handleMouseOut}),e&&this.renderIndicators(c,w,y),r.a.createElement("div",{className:R(y,"inner")},K.map(c,function(t,e){var I=e===w,g=M&&e===s;return Object(a.cloneElement)(t,{active:I,index:e,animateOut:g,animateIn:I&&null!=s&&M,direction:l,onAnimateOutEnd:g?A.handleItemAnimateOutEnd:null})})),I&&this.renderControls({wrap:g,children:c,activeIndex:w,prevIcon:n,prevLabel:o,nextIcon:E,nextLabel:T,bsProps:y}))},t}(r.a.Component);$A.propTypes=qA,$A.defaultProps=_A,$A.Caption=GA,$A.Item=WA;var At=k("carousel",$A),tt=(M(10),{inline:l.a.bool,disabled:l.a.bool,title:l.a.string,validationState:l.a.oneOf(["success","warning","error",null]),inputRef:l.a.func}),Mt=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.inline,M=A.disabled,e=A.validationState,I=A.inputRef,g=A.className,n=A.style,o=A.title,E=A.children,T=V(D()(A,["inline","disabled","validationState","inputRef","className","style","title","children"])),N=T[0],c=T[1],a=r.a.createElement("input",i()({},c,{ref:I,type:"checkbox",disabled:M}));if(t){var C,B=((C={})[R(N,"inline")]=!0,C.disabled=M,C);return r.a.createElement("label",{className:Q()(g,B),style:n,title:o},a,E)}var s=i()({},b(N),{disabled:M});return e&&(s["has-"+e]=!0),r.a.createElement("div",{className:Q()(g,s),style:n},r.a.createElement("label",{title:o},a,E))},t}(r.a.Component);Mt.propTypes=tt,Mt.defaultProps={inline:!1,disabled:!1,title:""};var et=k("checkbox",Mt);function It(A){return""+A.charAt(0).toUpperCase()+A.slice(1)}var gt={componentClass:BA.a,visibleXsBlock:l.a.bool,visibleSmBlock:l.a.bool,visibleMdBlock:l.a.bool,visibleLgBlock:l.a.bool},it=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.componentClass,M=A.className,e=V(D()(A,["componentClass","className"])),I=e[0],g=e[1],n=b(I);return z.forEach(function(A){var t="visible"+It(A)+"Block";g[t]&&(n["visible-"+A+"-block"]=!0),delete g[t]}),r.a.createElement(t,i()({},g,{className:Q()(M,n)}))},t}(r.a.Component);it.propTypes=gt,it.defaultProps={componentClass:"div"};var nt=k("clearfix",it),ot={htmlFor:l.a.string,srOnly:l.a.bool},Et={$bs_formGroup:l.a.object},Tt=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.context.$bs_formGroup,t=A&&A.controlId,M=this.props,e=M.htmlFor,I=void 0===e?t:e,g=M.srOnly,n=M.className,o=V(D()(M,["htmlFor","srOnly","className"])),E=o[0],T=o[1],N=i()({},b(E),{"sr-only":g});return r.a.createElement("label",i()({},T,{htmlFor:I,className:Q()(n,N)}))},t}(r.a.Component);Tt.propTypes=ot,Tt.defaultProps={srOnly:!1},Tt.contextTypes=Et;var Nt=k("control-label",Tt),ct={componentClass:BA.a,xs:l.a.number,sm:l.a.number,md:l.a.number,lg:l.a.number,xsHidden:l.a.bool,smHidden:l.a.bool,mdHidden:l.a.bool,lgHidden:l.a.bool,xsOffset:l.a.number,smOffset:l.a.number,mdOffset:l.a.number,lgOffset:l.a.number,xsPush:l.a.number,smPush:l.a.number,mdPush:l.a.number,lgPush:l.a.number,xsPull:l.a.number,smPull:l.a.number,mdPull:l.a.number,lgPull:l.a.number},at=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.componentClass,M=A.className,e=V(D()(A,["componentClass","className"])),I=e[0],g=e[1],n=[];return z.forEach(function(A){function t(t,M){var e=""+A+t,i=g[e];null!=i&&n.push(R(I,""+A+M+"-"+i)),delete g[e]}t("",""),t("Offset","-offset"),t("Push","-push"),t("Pull","-pull");var M=A+"Hidden";g[M]&&n.push("hidden-"+A),delete g[M]}),r.a.createElement(t,i()({},g,{className:Q()(M,n)}))},t}(r.a.Component);at.propTypes=ct,at.defaultProps={componentClass:"div"};var rt,Ct=k("col",at),Dt=M(133),Bt=M.n(Dt),Qt=M(53),st=M.n(Qt),lt={height:["marginTop","marginBottom"],width:["marginLeft","marginRight"]};var ut=((rt={})[Qt.EXITED]="collapse",rt[Qt.EXITING]="collapsing",rt[Qt.ENTERING]="collapsing",rt[Qt.ENTERED]="collapse in",rt),yt={in:l.a.bool,mountOnEnter:l.a.bool,unmountOnExit:l.a.bool,appear:l.a.bool,timeout:l.a.number,onEnter:l.a.func,onEntering:l.a.func,onEntered:l.a.func,onExit:l.a.func,onExiting:l.a.func,onExited:l.a.func,dimension:l.a.oneOfType([l.a.oneOf(["height","width"]),l.a.func]),getDimensionValue:l.a.func,role:l.a.string},xt={in:!1,timeout:300,mountOnEnter:!1,unmountOnExit:!1,appear:!1,dimension:"height",getDimensionValue:function(A,t){var M=t["offset"+It(A)],e=lt[A];return M+parseInt(Bt()(t,e[0]),10)+parseInt(Bt()(t,e[1]),10)}},wt=function(A){function t(){var M,e,I;o()(this,t);for(var g=arguments.length,i=Array(g),n=0;n1&&(I=t,1))}),I?new Error("(children) "+e+" - Duplicate children detected of bsRole: "+I+". Only one child each allowed with the following bsRoles: "+t.join(", ")):null})}(Vt)),disabled:l.a.bool,pullRight:l.a.bool,open:l.a.bool,defaultOpen:l.a.bool,onToggle:l.a.func,onSelect:l.a.func,role:l.a.string,rootCloseEvent:l.a.oneOf(["click","mousedown"]),onMouseEnter:l.a.func,onMouseLeave:l.a.func},Wt={componentClass:FA},Pt=function(A){function t(M,e){o()(this,t);var I=T()(this,A.call(this,M,e));return I.handleClick=I.handleClick.bind(I),I.handleKeyDown=I.handleKeyDown.bind(I),I.handleClose=I.handleClose.bind(I),I._focusInDropdown=!1,I.lastOpenEventType=null,I}return c()(t,A),t.prototype.componentDidMount=function(){this.focusNextOnOpen()},t.prototype.componentWillUpdate=function(A){!A.open&&this.props.open&&(this._focusInDropdown=Lt()(bA.a.findDOMNode(this.menu),dt()(document)))},t.prototype.componentDidUpdate=function(A){var t=this.props.open,M=A.open;t&&!M&&this.focusNextOnOpen(),!t&&M&&this._focusInDropdown&&(this._focusInDropdown=!1,this.focus())},t.prototype.focus=function(){var A=bA.a.findDOMNode(this.toggle);A&&A.focus&&A.focus()},t.prototype.focusNextOnOpen=function(){var A=this.menu;A.focusNext&&("keydown"!==this.lastOpenEventType&&"menuitem"!==this.props.role||A.focusNext())},t.prototype.handleClick=function(A){this.props.disabled||this.toggleOpen(A,{source:"click"})},t.prototype.handleClose=function(A,t){this.props.open&&this.toggleOpen(A,t)},t.prototype.handleKeyDown=function(A){if(!this.props.disabled)switch(A.keyCode){case zt.a.codes.down:this.props.open?this.menu.focusNext&&this.menu.focusNext():this.toggleOpen(A,{source:"keydown"}),A.preventDefault();break;case zt.a.codes.esc:case zt.a.codes.tab:this.handleClose(A,{source:"keydown"})}},t.prototype.toggleOpen=function(A,t){var M=!this.props.open;M&&(this.lastOpenEventType=t.source),this.props.onToggle&&this.props.onToggle(M,A,t)},t.prototype.renderMenu=function(A,t){var M=this,e=t.id,I=t.onSelect,g=t.rootCloseEvent,n=D()(t,["id","onSelect","rootCloseEvent"]),o=function(A){M.menu=A};return"string"==typeof A.ref||(o=QA(A.ref,o)),Object(a.cloneElement)(A,i()({},n,{ref:o,labelledBy:e,bsClass:R(n,"menu"),onClose:QA(A.props.onClose,this.handleClose),onSelect:QA(A.props.onSelect,I,function(A,t){return M.handleClose(t,{source:"select"})}),rootCloseEvent:g}))},t.prototype.renderToggle=function(A,t){var M=this,e=function(A){M.toggle=A};return"string"==typeof A.ref||(e=QA(A.ref,e)),Object(a.cloneElement)(A,i()({},t,{ref:e,bsClass:R(t,"toggle"),onClick:QA(A.props.onClick,this.handleClick),onKeyDown:QA(A.props.onKeyDown,this.handleKeyDown)}))},t.prototype.render=function(){var A,t=this,M=this.props,e=M.componentClass,I=M.id,g=M.dropup,n=M.disabled,o=M.pullRight,E=M.open,T=M.onSelect,N=M.role,c=M.bsClass,a=M.className,C=M.rootCloseEvent,B=M.children,s=D()(M,["componentClass","id","dropup","disabled","pullRight","open","onSelect","role","bsClass","className","rootCloseEvent","children"]);delete s.onToggle;var l=((A={})[c]=!0,A.open=E,A.disabled=n,A);return g&&(l[c]=!1,l.dropup=!0),r.a.createElement(e,i()({},s,{className:Q()(a,l)}),K.map(B,function(A){switch(A.props.bsRole){case vt:return t.renderToggle(A,{id:I,disabled:n,open:E,role:N,bsClass:c});case Vt:return t.renderMenu(A,{id:I,open:E,pullRight:o,bsClass:c,onSelect:T,rootCloseEvent:C});default:return A}}))},t}(r.a.Component);Pt.propTypes=Xt,Pt.defaultProps=Wt,k("dropdown",Pt);var Kt=y()(Pt,{open:"onToggle"});Kt.Toggle=Ht,Kt.Menu=Gt;var Zt=Kt;function qt(A,t){var M=t.propTypes,e={},I={};return w()(A).forEach(function(A){var t=A[0],g=A[1];M[t]?e[t]=g:I[t]=g}),[e,I]}var _t=i()({},Zt.propTypes,{bsStyle:l.a.string,bsSize:l.a.string,title:l.a.node.isRequired,noCaret:l.a.bool,children:l.a.node}),$t=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.bsSize,M=A.bsStyle,e=A.title,I=A.children,g=qt(D()(A,["bsSize","bsStyle","title","children"]),Zt.ControlledComponent),n=g[0],o=g[1];return r.a.createElement(Zt,i()({},n,{bsSize:t,bsStyle:M}),r.a.createElement(Zt.Toggle,i()({},o,{bsSize:t,bsStyle:M}),e),r.a.createElement(Zt.Menu,null,I))},t}(r.a.Component);$t.propTypes=_t;var AM,tM=$t,MM={in:l.a.bool,mountOnEnter:l.a.bool,unmountOnExit:l.a.bool,appear:l.a.bool,timeout:l.a.number,onEnter:l.a.func,onEntering:l.a.func,onEntered:l.a.func,onExit:l.a.func,onExiting:l.a.func,onExited:l.a.func},eM=((AM={})[Qt.ENTERING]="in",AM[Qt.ENTERED]="in",AM),IM=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.className,M=A.children,e=D()(A,["className","children"]);return r.a.createElement(st.a,e,function(A,e){return r.a.cloneElement(M,i()({},e,{className:Q()("fade",t,M.props.className,eM[A])}))})},t}(r.a.Component);IM.propTypes=MM,IM.defaultProps={in:!1,timeout:300,mountOnEnter:!1,unmountOnExit:!1,appear:!1};var gM=IM,iM={horizontal:l.a.bool,inline:l.a.bool,componentClass:BA.a},nM=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.horizontal,M=A.inline,e=A.componentClass,I=A.className,g=V(D()(A,["horizontal","inline","componentClass","className"])),n=g[0],o=g[1],E=[];return t&&E.push(R(n,"horizontal")),M&&E.push(R(n,"inline")),r.a.createElement(e,i()({},o,{className:Q()(I,E)}))},t}(r.a.Component);nM.propTypes=iM,nM.defaultProps={horizontal:!1,inline:!1,componentClass:"form"};var oM=k("form",nM),EM={$bs_formGroup:l.a.object},TM=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.getGlyph=function(A){switch(A){case"success":return"ok";case"warning":return"warning-sign";case"error":return"remove";default:return null}},t.prototype.renderDefaultFeedback=function(A,t,M,e){var I=this.getGlyph(A&&A.validationState);return I?r.a.createElement(ZA,i()({},e,{glyph:I,className:Q()(t,M)})):null},t.prototype.render=function(){var A=this.props,t=A.className,M=A.children,e=V(D()(A,["className","children"])),I=e[0],g=e[1],n=b(I);if(!M)return this.renderDefaultFeedback(this.context.$bs_formGroup,t,n,g);var o=r.a.Children.only(M);return r.a.cloneElement(o,i()({},g,{className:Q()(o.props.className,t,n)}))},t}(r.a.Component);TM.defaultProps={bsRole:"feedback"},TM.contextTypes=EM;var NM=k("form-control-feedback",TM),cM={componentClass:BA.a},aM=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.componentClass,M=A.className,e=V(D()(A,["componentClass","className"])),I=e[0],g=e[1],n=b(I);return r.a.createElement(t,i()({},g,{className:Q()(M,n)}))},t}(r.a.Component);aM.propTypes=cM,aM.defaultProps={componentClass:"p"};var rM=k("form-control-static",aM),CM={componentClass:BA.a,type:l.a.string,id:l.a.string,inputRef:l.a.func},DM={$bs_formGroup:l.a.object},BM=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.context.$bs_formGroup,t=A&&A.controlId,M=this.props,e=M.componentClass,I=M.type,g=M.id,n=void 0===g?t:g,o=M.inputRef,E=M.className,T=M.bsSize,N=V(D()(M,["componentClass","type","id","inputRef","className","bsSize"])),c=N[0],a=N[1],C=void 0;("file"!==I&&(C=b(c)),T)&&(C[R({bsClass:"input"},S[T]||T)]=!0);return r.a.createElement(e,i()({},a,{type:I,id:n,ref:o,className:Q()(E,C)}))},t}(r.a.Component);BM.propTypes=CM,BM.defaultProps={componentClass:"input"},BM.contextTypes=DM,BM.Feedback=NM,BM.Static=rM;var QM=k("form-control",J([h,d],BM)),sM={controlId:l.a.string,validationState:l.a.oneOf(["success","warning","error",null])},lM={$bs_formGroup:l.a.object.isRequired},uM=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.getChildContext=function(){var A=this.props;return{$bs_formGroup:{controlId:A.controlId,validationState:A.validationState}}},t.prototype.hasFeedback=function(A){var t=this;return K.some(A,function(A){return"feedback"===A.props.bsRole||A.props.children&&t.hasFeedback(A.props.children)})},t.prototype.render=function(){var A=this.props,t=A.validationState,M=A.className,e=A.children,I=X(D()(A,["validationState","className","children"]),["controlId"]),g=I[0],n=I[1],o=i()({},b(g),{"has-feedback":this.hasFeedback(e)});return t&&(o["has-"+t]=!0),r.a.createElement("div",i()({},n,{className:Q()(M,o)}),e)},t}(r.a.Component);uM.propTypes=sM,uM.childContextTypes=lM;var yM=k("form-group",J([d,h],uM)),xM={fluid:l.a.bool,componentClass:BA.a},wM=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.fluid,M=A.componentClass,e=A.className,I=V(D()(A,["fluid","componentClass","className"])),g=I[0],n=I[1],o=R(g,t&&"fluid");return r.a.createElement(M,i()({},n,{className:Q()(e,o)}))},t}(r.a.Component);wM.propTypes=xM,wM.defaultProps={componentClass:"div",fluid:!1};var jM=k("container",wM),YM=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.className,M=V(D()(A,["className"])),e=M[0],I=M[1],g=b(e);return r.a.createElement("span",i()({},I,{className:Q()(t,g)}))},t}(r.a.Component),dM=k("help-block",YM),hM={responsive:l.a.bool,rounded:l.a.bool,circle:l.a.bool,thumbnail:l.a.bool},LM=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A,t=this.props,M=t.responsive,e=t.rounded,I=t.circle,g=t.thumbnail,n=t.className,o=V(D()(t,["responsive","rounded","circle","thumbnail","className"])),E=o[0],T=o[1],N=((A={})[R(E,"responsive")]=M,A[R(E,"rounded")]=e,A[R(E,"circle")]=I,A[R(E,"thumbnail")]=g,A);return r.a.createElement("img",i()({},T,{className:Q()(n,N)}))},t}(r.a.Component);LM.propTypes=hM,LM.defaultProps={responsive:!1,rounded:!1,circle:!1,thumbnail:!1};var SM=k("img",LM),zM=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.className,M=V(D()(A,["className"])),e=M[0],I=M[1],g=b(e);return r.a.createElement("span",i()({},I,{className:Q()(t,g)}))},t}(r.a.Component),UM=k("input-group-addon",zM),pM=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.className,M=V(D()(A,["className"])),e=M[0],I=M[1],g=b(e);return r.a.createElement("span",i()({},I,{className:Q()(t,g)}))},t}(r.a.Component),fM=k("input-group-btn",pM),FM=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.className,M=V(D()(A,["className"])),e=M[0],I=M[1],g=b(e);return r.a.createElement("span",i()({},I,{className:Q()(t,g)}))},t}(r.a.Component);FM.Addon=UM,FM.Button=fM;var mM=k("input-group",J([d,h],FM)),OM={componentClass:BA.a},RM=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.componentClass,M=A.className,e=V(D()(A,["componentClass","className"])),I=e[0],g=e[1],n=b(I);return r.a.createElement(t,i()({},g,{className:Q()(M,n)}))},t}(r.a.Component);RM.propTypes=OM,RM.defaultProps={componentClass:"div"};var kM=k("jumbotron",RM),GM=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.hasContent=function(A){var t=!1;return r.a.Children.forEach(A,function(A){t||(A||0===A)&&(t=!0)}),t},t.prototype.render=function(){var A=this.props,t=A.className,M=A.children,e=V(D()(A,["className","children"])),I=e[0],g=e[1],n=i()({},b(I),{hidden:!this.hasContent(M)});return r.a.createElement("span",i()({},g,{className:Q()(t,n)}),M)},t}(r.a.Component),JM=k("label",G([].concat(iA()(U),[p,f]),p,GM)),bM={active:l.a.any,disabled:l.a.any,header:l.a.node,listItem:l.a.bool,onClick:l.a.func,href:l.a.string,type:l.a.string},HM=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.renderHeader=function(A,t){return r.a.isValidElement(A)?Object(a.cloneElement)(A,{className:Q()(A.props.className,t)}):r.a.createElement("h4",{className:t},A)},t.prototype.render=function(){var A=this.props,t=A.active,M=A.disabled,e=A.className,I=A.header,g=A.listItem,n=A.children,o=V(D()(A,["active","disabled","className","header","listItem","children"])),E=o[0],T=o[1],N=i()({},b(E),{active:t,disabled:M}),c=void 0;return T.href?c="a":T.onClick?(c="button",T.type=T.type||"button"):c=g?"li":"span",T.className=Q()(e,N),I?r.a.createElement(c,T,this.renderHeader(I,R(E,"heading")),r.a.createElement("p",{className:R(E,"text")},n)):r.a.createElement(c,T,n)},t}(r.a.Component);HM.propTypes=bM,HM.defaultProps={listItem:!1};var vM=k("list-group-item",G(iA()(U),HM)),VM={componentClass:BA.a};var XM=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.children,M=A.componentClass,e=void 0===M?function(A){return A?K.some(A,function(A){return A.type!==vM||A.props.href||A.props.onClick})?"div":"ul":"div"}(t):M,I=A.className,g=V(D()(A,["children","componentClass","className"])),n=g[0],o=g[1],E=b(n),T="ul"===e&&K.every(t,function(A){return A.type===vM});return r.a.createElement(e,i()({},o,{className:Q()(I,E)}),T?K.map(t,function(A){return Object(a.cloneElement)(A,{listItem:!0})}):t)},t}(r.a.Component);XM.propTypes=VM;var WM=k("list-group",XM),PM={align:l.a.oneOf(["top","middle","bottom"]),componentClass:BA.a},KM=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.componentClass,M=A.align,e=A.className,I=V(D()(A,["componentClass","align","className"])),g=I[0],n=I[1],o=b(g);return M&&(o[R(ce.defaultProps,M)]=!0),r.a.createElement(t,i()({},n,{className:Q()(e,o)}))},t}(r.a.Component);KM.propTypes=PM,KM.defaultProps={componentClass:"div"};var ZM=k("media-body",KM),qM={componentClass:BA.a},_M=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.componentClass,M=A.className,e=V(D()(A,["componentClass","className"])),I=e[0],g=e[1],n=b(I);return r.a.createElement(t,i()({},g,{className:Q()(M,n)}))},t}(r.a.Component);_M.propTypes=qM,_M.defaultProps={componentClass:"h4"};var $M=k("media-heading",_M),Ae={align:l.a.oneOf(["top","middle","bottom"])},te=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.align,M=A.className,e=V(D()(A,["align","className"])),I=e[0],g=e[1],n=b(I);return t&&(n[R(ce.defaultProps,t)]=!0),r.a.createElement("div",i()({},g,{className:Q()(M,n)}))},t}(r.a.Component);te.propTypes=Ae;var Me=k("media-left",te),ee=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.className,M=V(D()(A,["className"])),e=M[0],I=M[1],g=b(e);return r.a.createElement("ul",i()({},I,{className:Q()(t,g)}))},t}(r.a.Component),Ie=k("media-list",ee),ge=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.className,M=V(D()(A,["className"])),e=M[0],I=M[1],g=b(e);return r.a.createElement("li",i()({},I,{className:Q()(t,g)}))},t}(r.a.Component),ie=k("media",ge),ne={align:l.a.oneOf(["top","middle","bottom"])},oe=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.align,M=A.className,e=V(D()(A,["align","className"])),I=e[0],g=e[1],n=b(I);return t&&(n[R(ce.defaultProps,t)]=!0),r.a.createElement("div",i()({},g,{className:Q()(M,n)}))},t}(r.a.Component);oe.propTypes=ne;var Ee=k("media-right",oe),Te={componentClass:BA.a},Ne=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.componentClass,M=A.className,e=V(D()(A,["componentClass","className"])),I=e[0],g=e[1],n=b(I);return r.a.createElement(t,i()({},g,{className:Q()(M,n)}))},t}(r.a.Component);Ne.propTypes=Te,Ne.defaultProps={componentClass:"div"},Ne.Heading=$M,Ne.Body=ZM,Ne.Left=Me,Ne.Right=Ee,Ne.List=Ie,Ne.ListItem=ie;var ce=k("media",Ne),ae={active:l.a.bool,disabled:l.a.bool,divider:UA()(l.a.bool,function(A){var t=A.divider,M=A.children;return t&&M?new Error("Children will not be rendered for dividers"):null}),eventKey:l.a.any,header:l.a.bool,href:l.a.string,onClick:l.a.func,onSelect:l.a.func},re=function(A){function t(M,e){o()(this,t);var I=T()(this,A.call(this,M,e));return I.handleClick=I.handleClick.bind(I),I}return c()(t,A),t.prototype.handleClick=function(A){var t=this.props,M=t.href,e=t.disabled,I=t.onSelect,g=t.eventKey;M&&!e||A.preventDefault(),e||I&&I(g,A)},t.prototype.render=function(){var A=this.props,t=A.active,M=A.disabled,e=A.divider,I=A.header,g=A.onClick,n=A.className,o=A.style,E=X(D()(A,["active","disabled","divider","header","onClick","className","style"]),["eventKey","onSelect"]),T=E[0],N=E[1];return e?(N.children=void 0,r.a.createElement("li",i()({},N,{role:"separator",className:Q()(n,"divider"),style:o}))):I?r.a.createElement("li",i()({},N,{role:"heading",className:Q()(n,R(T,"header")),style:o})):r.a.createElement("li",{role:"presentation",className:Q()(n,{active:t,disabled:M}),style:o},r.a.createElement(yA,i()({},N,{role:"menuitem",tabIndex:"-1",onClick:QA(g,this.handleClick)})))},t}(r.a.Component);re.propTypes=ae,re.defaultProps={divider:!1,disabled:!1,header:!1};var Ce=k("dropdown",re),De=M(197),Be=M.n(De),Qe=M(193),se=M.n(Qe),le=M(65),ue=M.n(le),ye=M(198),xe=M.n(ye),we=M(97),je=M.n(we),Ye=M(195),de=M.n(Ye),he={componentClass:BA.a},Le=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.componentClass,M=A.className,e=V(D()(A,["componentClass","className"])),I=e[0],g=e[1],n=b(I);return r.a.createElement(t,i()({},g,{className:Q()(M,n)}))},t}(r.a.Component);Le.propTypes=he,Le.defaultProps={componentClass:"div"};var Se=k("modal-body",Le),ze={dialogClassName:l.a.string},Ue=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A,t=this.props,M=t.dialogClassName,e=t.className,I=t.style,g=t.children,n=V(D()(t,["dialogClassName","className","style","children"])),o=n[0],E=n[1],T=R(o),N=i()({display:"block"},I),c=i()({},b(o),((A={})[T]=!1,A[R(o,"dialog")]=!0,A));return r.a.createElement("div",i()({},E,{tabIndex:"-1",role:"dialog",style:N,className:Q()(e,T)}),r.a.createElement("div",{className:Q()(M,c)},r.a.createElement("div",{className:R(o,"content"),role:"document"},g)))},t}(r.a.Component);Ue.propTypes=ze;var pe=k("modal",J([d,h],Ue)),fe={componentClass:BA.a},Fe=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.componentClass,M=A.className,e=V(D()(A,["componentClass","className"])),I=e[0],g=e[1],n=b(I);return r.a.createElement(t,i()({},g,{className:Q()(M,n)}))},t}(r.a.Component);Fe.propTypes=fe,Fe.defaultProps={componentClass:"div"};var me=k("modal-footer",Fe),Oe={closeLabel:l.a.string,closeButton:l.a.bool,onHide:l.a.func},Re={$bs_modal:l.a.shape({onHide:l.a.func})},ke=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.closeLabel,M=A.closeButton,e=A.onHide,I=A.className,g=A.children,n=D()(A,["closeLabel","closeButton","onHide","className","children"]),o=this.context.$bs_modal,E=V(n),T=E[0],N=E[1],c=b(T);return r.a.createElement("div",i()({},N,{className:Q()(I,c)}),M&&r.a.createElement(EA,{label:t,onClick:QA(o&&o.onHide,e)}),g)},t}(r.a.Component);ke.propTypes=Oe,ke.defaultProps={closeLabel:"Close",closeButton:!1},ke.contextTypes=Re;var Ge=k("modal-header",ke),Je={componentClass:BA.a},be=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.componentClass,M=A.className,e=V(D()(A,["componentClass","className"])),I=e[0],g=e[1],n=b(I);return r.a.createElement(t,i()({},g,{className:Q()(M,n)}))},t}(r.a.Component);be.propTypes=Je,be.defaultProps={componentClass:"h4"};var He=k("modal-title",be),ve=i()({},je.a.propTypes,pe.propTypes,{backdrop:l.a.oneOf(["static",!0,!1]),backdropClassName:l.a.string,keyboard:l.a.bool,animation:l.a.bool,dialogComponentClass:BA.a,autoFocus:l.a.bool,enforceFocus:l.a.bool,restoreFocus:l.a.bool,show:l.a.bool,onHide:l.a.func,onEnter:l.a.func,onEntering:l.a.func,onEntered:l.a.func,onExit:l.a.func,onExiting:l.a.func,onExited:l.a.func,container:je.a.propTypes.container}),Ve=i()({},je.a.defaultProps,{animation:!0,dialogComponentClass:pe}),Xe={$bs_modal:l.a.shape({onHide:l.a.func})};function We(A){return r.a.createElement(gM,i()({},A,{timeout:Ke.TRANSITION_DURATION}))}function Pe(A){return r.a.createElement(gM,i()({},A,{timeout:Ke.BACKDROP_TRANSITION_DURATION}))}var Ke=function(A){function t(M,e){o()(this,t);var I=T()(this,A.call(this,M,e));return I.handleEntering=I.handleEntering.bind(I),I.handleExited=I.handleExited.bind(I),I.handleWindowResize=I.handleWindowResize.bind(I),I.handleDialogClick=I.handleDialogClick.bind(I),I.setModalRef=I.setModalRef.bind(I),I.state={style:{}},I}return c()(t,A),t.prototype.getChildContext=function(){return{$bs_modal:{onHide:this.props.onHide}}},t.prototype.componentWillUnmount=function(){this.handleExited()},t.prototype.setModalRef=function(A){this._modal=A},t.prototype.handleDialogClick=function(A){A.target===A.currentTarget&&this.props.onHide()},t.prototype.handleEntering=function(){Be.a.on(window,"resize",this.handleWindowResize),this.updateStyle()},t.prototype.handleExited=function(){Be.a.off(window,"resize",this.handleWindowResize)},t.prototype.handleWindowResize=function(){this.updateStyle()},t.prototype.updateStyle=function(){if(ue.a){var A=this._modal.getDialogElement(),t=A.scrollHeight,M=se()(A),e=de()(bA.a.findDOMNode(this.props.container||M.body)),I=t>M.documentElement.clientHeight;this.setState({style:{paddingRight:e&&!I?xe()():void 0,paddingLeft:!e&&I?xe()():void 0}})}},t.prototype.render=function(){var A=this.props,t=A.backdrop,M=A.backdropClassName,e=A.animation,I=A.show,g=A.dialogComponentClass,n=A.className,o=A.style,E=A.children,T=A.onEntering,N=A.onExited,c=D()(A,["backdrop","backdropClassName","animation","show","dialogComponentClass","className","style","children","onEntering","onExited"]),a=qt(c,je.a),C=a[0],B=a[1],s=I&&!e&&"in";return r.a.createElement(je.a,i()({},C,{ref:this.setModalRef,show:I,containerClassName:R(c,"open"),transition:e?We:void 0,backdrop:t,backdropTransition:e?Pe:void 0,backdropClassName:Q()(R(c,"backdrop"),M,s),onEntering:QA(T,this.handleEntering),onExited:QA(N,this.handleExited)}),r.a.createElement(g,i()({},B,{style:i()({},this.state.style,o),className:Q()(n,s),onClick:!0===t?this.handleDialogClick:null}),E))},t}(r.a.Component);Ke.propTypes=ve,Ke.defaultProps=Ve,Ke.childContextTypes=Xe,Ke.Body=Se,Ke.Header=Ge,Ke.Title=He,Ke.Footer=me,Ke.Dialog=pe,Ke.TRANSITION_DURATION=300,Ke.BACKDROP_TRANSITION_DURATION=150;var Ze=k("modal",J([d,h],Ke)),qe={activeKey:l.a.any,activeHref:l.a.string,stacked:l.a.bool,justified:UA()(l.a.bool,function(A){var t=A.justified,M=A.navbar;return t&&M?Error("justified navbar ` + "`" + `Nav` + "`" + `s are not supported"):null}),onSelect:l.a.func,role:l.a.string,navbar:l.a.bool,pullRight:l.a.bool,pullLeft:l.a.bool},_e={$bs_navbar:l.a.shape({bsClass:l.a.string,onSelect:l.a.func}),$bs_tabContainer:l.a.shape({activeKey:l.a.any,onSelect:l.a.func.isRequired,getTabId:l.a.func.isRequired,getPaneId:l.a.func.isRequired})},$e=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.componentDidUpdate=function(){var A=this;if(this._needsRefocus){this._needsRefocus=!1;var t=this.props.children,M=this.getActiveProps(),e=M.activeKey,I=M.activeHref,g=K.find(t,function(t){return A.isActive(t,e,I)}),i=K.toArray(t).indexOf(g),n=bA.a.findDOMNode(this).children,o=n&&n[i];o&&o.firstChild&&o.firstChild.focus()}},t.prototype.getActiveProps=function(){var A=this.context.$bs_tabContainer;return A||this.props},t.prototype.getNextActiveChild=function(A){var t=this,M=this.props.children,e=M.filter(function(A){return null!=A.props.eventKey&&!A.props.disabled}),I=this.getActiveProps(),g=I.activeKey,i=I.activeHref,n=K.find(M,function(A){return t.isActive(A,g,i)}),o=e.indexOf(n);if(-1===o)return e[0];var E=o+A,T=e.length;return E>=T?E=0:E<0&&(E=T-1),e[E]},t.prototype.getTabProps=function(A,t,M,e,I){var g=this;if(!t&&"tablist"!==M)return null;var i=A.props,n=i.id,o=i["aria-controls"],E=i.eventKey,T=i.role,N=i.onKeyDown,c=i.tabIndex;return t&&(n=t.getTabId(E),o=t.getPaneId(E)),"tablist"===M&&(T=T||"tab",N=QA(function(A){return g.handleTabKeyDown(I,A)},N),c=e?c:-1),{id:n,role:T,onKeyDown:N,"aria-controls":o,tabIndex:c}},t.prototype.handleTabKeyDown=function(A,t){var M=void 0;switch(t.keyCode){case zt.a.codes.left:case zt.a.codes.up:M=this.getNextActiveChild(-1);break;case zt.a.codes.right:case zt.a.codes.down:M=this.getNextActiveChild(1);break;default:return}t.preventDefault(),A&&M&&null!=M.props.eventKey&&A(M.props.eventKey),this._needsRefocus=!0},t.prototype.isActive=function(A,t,M){var e=A.props;return!!(e.active||null!=t&&e.eventKey===t||M&&e.href===M)||e.active},t.prototype.render=function(){var A,t=this,M=this.props,e=M.stacked,I=M.justified,g=M.onSelect,n=M.role,o=M.navbar,E=M.pullRight,T=M.pullLeft,N=M.className,c=M.children,C=D()(M,["stacked","justified","onSelect","role","navbar","pullRight","pullLeft","className","children"]),B=this.context.$bs_tabContainer,s=n||(B?"tablist":null),l=this.getActiveProps(),u=l.activeKey,y=l.activeHref;delete C.activeKey,delete C.activeHref;var x=V(C),w=x[0],j=x[1],Y=i()({},b(w),((A={})[R(w,"stacked")]=e,A[R(w,"justified")]=I,A)),d=null!=o?o:this.context.$bs_navbar,h=void 0,L=void 0;if(d){var S=this.context.$bs_navbar||{bsClass:"navbar"};Y[R(S,"nav")]=!0,L=R(S,"right"),h=R(S,"left")}else L="pull-right",h="pull-left";return Y[L]=E,Y[h]=T,r.a.createElement("ul",i()({},j,{role:s,className:Q()(N,Y)}),K.map(c,function(A){var M=t.isActive(A,u,y),e=QA(A.props.onSelect,g,d&&d.onSelect,B&&B.onSelect);return Object(a.cloneElement)(A,i()({},t.getTabProps(A,B,s,M,e),{active:M,activeKey:u,activeHref:y,onSelect:e}))}))},t}(r.a.Component);$e.propTypes=qe,$e.defaultProps={justified:!1,pullRight:!1,pullLeft:!1,stacked:!1},$e.contextTypes=_e;var AI=k("nav",G(["tabs","pills"],$e)),tI={$bs_navbar:l.a.shape({bsClass:l.a.string})},MI=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.className,M=A.children,e=D()(A,["className","children"]),I=R(this.context.$bs_navbar||{bsClass:"navbar"},"brand");return r.a.isValidElement(M)?r.a.cloneElement(M,{className:Q()(M.props.className,t,I)}):r.a.createElement("span",i()({},e,{className:Q()(t,I)}),M)},t}(r.a.Component);MI.contextTypes=tI;var eI=MI,II={$bs_navbar:l.a.shape({bsClass:l.a.string,expanded:l.a.bool})},gI=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.children,M=D()(A,["children"]),e=this.context.$bs_navbar||{bsClass:"navbar"},I=R(e,"collapse");return r.a.createElement(jt,i()({in:e.expanded},M),r.a.createElement("div",{className:I},t))},t}(r.a.Component);gI.contextTypes=II;var iI=gI,nI={$bs_navbar:l.a.shape({bsClass:l.a.string})},oI=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.className,M=D()(A,["className"]),e=R(this.context.$bs_navbar||{bsClass:"navbar"},"header");return r.a.createElement("div",i()({},M,{className:Q()(t,e)}))},t}(r.a.Component);oI.contextTypes=nI;var EI=oI,TI={onClick:l.a.func,children:l.a.node},NI={$bs_navbar:l.a.shape({bsClass:l.a.string,expanded:l.a.bool,onToggle:l.a.func.isRequired})},cI=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.onClick,M=A.className,e=A.children,I=D()(A,["onClick","className","children"]),g=this.context.$bs_navbar||{bsClass:"navbar"},n=i()({type:"button"},I,{onClick:QA(t,g.onToggle),className:Q()(M,R(g,"toggle"),!g.expanded&&"collapsed")});return e?r.a.createElement("button",n,e):r.a.createElement("button",n,r.a.createElement("span",{className:"sr-only"},"Toggle navigation"),r.a.createElement("span",{className:"icon-bar"}),r.a.createElement("span",{className:"icon-bar"}),r.a.createElement("span",{className:"icon-bar"}))},t}(r.a.Component);cI.propTypes=TI,cI.contextTypes=NI;var aI=cI,rI={fixedTop:l.a.bool,fixedBottom:l.a.bool,staticTop:l.a.bool,inverse:l.a.bool,fluid:l.a.bool,componentClass:BA.a,onToggle:l.a.func,onSelect:l.a.func,collapseOnSelect:l.a.bool,expanded:l.a.bool,role:l.a.string},CI={$bs_navbar:l.a.shape({bsClass:l.a.string,expanded:l.a.bool,onToggle:l.a.func.isRequired,onSelect:l.a.func})},DI=function(A){function t(M,e){o()(this,t);var I=T()(this,A.call(this,M,e));return I.handleToggle=I.handleToggle.bind(I),I.handleCollapse=I.handleCollapse.bind(I),I}return c()(t,A),t.prototype.getChildContext=function(){var A=this.props,t=A.bsClass,M=A.expanded,e=A.onSelect,I=A.collapseOnSelect;return{$bs_navbar:{bsClass:t,expanded:M,onToggle:this.handleToggle,onSelect:QA(e,I?this.handleCollapse:null)}}},t.prototype.handleCollapse=function(){var A=this.props,t=A.onToggle;A.expanded&&t(!1)},t.prototype.handleToggle=function(){var A=this.props;(0,A.onToggle)(!A.expanded)},t.prototype.render=function(){var A,t=this.props,M=t.componentClass,e=t.fixedTop,I=t.fixedBottom,g=t.staticTop,n=t.inverse,o=t.fluid,E=t.className,T=t.children,N=X(D()(t,["componentClass","fixedTop","fixedBottom","staticTop","inverse","fluid","className","children"]),["expanded","onToggle","onSelect","collapseOnSelect"]),c=N[0],a=N[1];void 0===a.role&&"nav"!==M&&(a.role="navigation"),n&&(c.bsStyle=m);var C=i()({},b(c),((A={})[R(c,"fixed-top")]=e,A[R(c,"fixed-bottom")]=I,A[R(c,"static-top")]=g,A));return r.a.createElement(M,i()({},a,{className:Q()(E,C)}),r.a.createElement(jM,{fluid:o},T))},t}(r.a.Component);DI.propTypes=rI,DI.defaultProps={componentClass:"nav",fixedTop:!1,fixedBottom:!1,staticTop:!1,inverse:!1,fluid:!1,collapseOnSelect:!1},DI.childContextTypes=CI,k("navbar",DI);var BI=y()(DI,{expanded:"onToggle"});function QI(A,t,M){var e=function(A,M){var e=M.$bs_navbar,I=void 0===e?{bsClass:"navbar"}:e,g=A.componentClass,n=A.className,o=A.pullRight,E=A.pullLeft,T=D()(A,["componentClass","className","pullRight","pullLeft"]);return r.a.createElement(g,i()({},T,{className:Q()(n,R(I,t),o&&R(I,"right"),E&&R(I,"left"))}))};return e.displayName=M,e.propTypes={componentClass:BA.a,pullRight:l.a.bool,pullLeft:l.a.bool},e.defaultProps={componentClass:A,pullRight:!1,pullLeft:!1},e.contextTypes={$bs_navbar:l.a.shape({bsClass:l.a.string})},e}BI.Brand=eI,BI.Header=EI,BI.Toggle=aI,BI.Collapse=iI,BI.Form=QI("div","form","NavbarForm"),BI.Text=QI("p","text","NavbarText"),BI.Link=QI("a","link","NavbarLink");var sI=G([p,m],p,BI),lI=i()({},Zt.propTypes,{title:l.a.node.isRequired,noCaret:l.a.bool,active:l.a.bool,activeKey:l.a.any,activeHref:l.a.string,children:l.a.node}),uI=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.isActive=function(A,t,M){var e=A.props,I=this;return!!(e.active||null!=t&&e.eventKey===t||M&&e.href===M)||(!!K.some(e.children,function(A){return I.isActive(A,t,M)})||e.active)},t.prototype.render=function(){var A=this,t=this.props,M=t.title,e=t.activeKey,I=t.activeHref,g=t.className,n=t.style,o=t.children,E=D()(t,["title","activeKey","activeHref","className","style","children"]),T=this.isActive(this,e,I);delete E.active,delete E.eventKey;var N=qt(E,Zt.ControlledComponent),c=N[0],a=N[1];return r.a.createElement(Zt,i()({},c,{componentClass:"li",className:Q()(g,{active:T}),style:n}),r.a.createElement(Zt.Toggle,i()({},a,{useAnchor:!0}),M),r.a.createElement(Zt.Menu,null,K.map(o,function(t){return r.a.cloneElement(t,{active:A.isActive(t,e,I)})})))},t}(r.a.Component);uI.propTypes=lI;var yI=uI,xI={active:l.a.bool,disabled:l.a.bool,role:l.a.string,href:l.a.string,onClick:l.a.func,onSelect:l.a.func,eventKey:l.a.any},wI=function(A){function t(M,e){o()(this,t);var I=T()(this,A.call(this,M,e));return I.handleClick=I.handleClick.bind(I),I}return c()(t,A),t.prototype.handleClick=function(A){this.props.disabled?A.preventDefault():this.props.onSelect&&this.props.onSelect(this.props.eventKey,A)},t.prototype.render=function(){var A=this.props,t=A.active,M=A.disabled,e=A.onClick,I=A.className,g=A.style,n=D()(A,["active","disabled","onClick","className","style"]);return delete n.onSelect,delete n.eventKey,delete n.activeKey,delete n.activeHref,n.role?"tab"===n.role&&(n["aria-selected"]=t):"#"===n.href&&(n.role="button"),r.a.createElement("li",{role:"presentation",className:Q()(I,{active:t,disabled:M}),style:g},r.a.createElement(yA,i()({},n,{disabled:M,onClick:QA(e,this.handleClick)})))},t}(r.a.Component);wI.propTypes=xI,wI.defaultProps={active:!1,disabled:!1};var jI=wI,YI=M(199),dI=M.n(YI),hI=i()({},dI.a.propTypes,{show:l.a.bool,rootClose:l.a.bool,onHide:l.a.func,animation:l.a.oneOfType([l.a.bool,BA.a]),onEnter:l.a.func,onEntering:l.a.func,onEntered:l.a.func,onExit:l.a.func,onExiting:l.a.func,onExited:l.a.func,placement:l.a.oneOf(["top","right","bottom","left"])}),LI={animation:gM,rootClose:!1,show:!1,placement:"right"},SI=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.animation,M=A.children,e=D()(A,["animation","children"]),I=!0===t?gM:t||null,g=void 0;return g=I?M:Object(a.cloneElement)(M,{className:Q()(M.props.className,"in")}),r.a.createElement(dI.a,i()({},e,{transition:I}),g)},t}(r.a.Component);SI.propTypes=hI,SI.defaultProps=LI;var zI=SI;function UI(A,t){return Array.isArray(t)?t.indexOf(A)>=0:A===t}var pI=l.a.oneOf(["click","hover","focus"]),fI=i()({},zI.propTypes,{trigger:l.a.oneOfType([pI,l.a.arrayOf(pI)]),delay:l.a.number,delayShow:l.a.number,delayHide:l.a.number,defaultOverlayShown:l.a.bool,overlay:l.a.node.isRequired,onBlur:l.a.func,onClick:l.a.func,onFocus:l.a.func,onMouseOut:l.a.func,onMouseOver:l.a.func,target:l.a.oneOf([null]),onHide:l.a.oneOf([null]),show:l.a.oneOf([null])}),FI=function(A){function t(M,e){o()(this,t);var I=T()(this,A.call(this,M,e));return I.handleToggle=I.handleToggle.bind(I),I.handleDelayedShow=I.handleDelayedShow.bind(I),I.handleDelayedHide=I.handleDelayedHide.bind(I),I.handleHide=I.handleHide.bind(I),I.handleMouseOver=function(A){return I.handleMouseOverOut(I.handleDelayedShow,A,"fromElement")},I.handleMouseOut=function(A){return I.handleMouseOverOut(I.handleDelayedHide,A,"toElement")},I._mountNode=null,I.state={show:M.defaultOverlayShown},I}return c()(t,A),t.prototype.componentDidMount=function(){this._mountNode=document.createElement("div"),this.renderOverlay()},t.prototype.componentDidUpdate=function(){this.renderOverlay()},t.prototype.componentWillUnmount=function(){bA.a.unmountComponentAtNode(this._mountNode),this._mountNode=null,clearTimeout(this._hoverShowDelay),clearTimeout(this._hoverHideDelay)},t.prototype.handleDelayedHide=function(){var A=this;if(null!=this._hoverShowDelay)return clearTimeout(this._hoverShowDelay),void(this._hoverShowDelay=null);if(this.state.show&&null==this._hoverHideDelay){var t=null!=this.props.delayHide?this.props.delayHide:this.props.delay;t?this._hoverHideDelay=setTimeout(function(){A._hoverHideDelay=null,A.hide()},t):this.hide()}},t.prototype.handleDelayedShow=function(){var A=this;if(null!=this._hoverHideDelay)return clearTimeout(this._hoverHideDelay),void(this._hoverHideDelay=null);if(!this.state.show&&null==this._hoverShowDelay){var t=null!=this.props.delayShow?this.props.delayShow:this.props.delay;t?this._hoverShowDelay=setTimeout(function(){A._hoverShowDelay=null,A.show()},t):this.show()}},t.prototype.handleHide=function(){this.hide()},t.prototype.handleMouseOverOut=function(A,t,M){var e=t.currentTarget,I=t.relatedTarget||t.nativeEvent[M];I&&I===e||Lt()(e,I)||A(t)},t.prototype.handleToggle=function(){this.state.show?this.hide():this.show()},t.prototype.hide=function(){this.setState({show:!1})},t.prototype.makeOverlay=function(A,t){return r.a.createElement(zI,i()({},t,{show:this.state.show,onHide:this.handleHide,target:this}),A)},t.prototype.show=function(){this.setState({show:!0})},t.prototype.renderOverlay=function(){bA.a.unstable_renderSubtreeIntoContainer(this,this._overlay,this._mountNode)},t.prototype.render=function(){var A=this.props,t=A.trigger,M=A.overlay,e=A.children,I=A.onBlur,g=A.onClick,i=A.onFocus,n=A.onMouseOut,o=A.onMouseOver,E=D()(A,["trigger","overlay","children","onBlur","onClick","onFocus","onMouseOut","onMouseOver"]);delete E.delay,delete E.delayShow,delete E.delayHide,delete E.defaultOverlayShown;var T=r.a.Children.only(e),N=T.props,c={};return this.state.show&&(c["aria-describedby"]=M.props.id),c.onClick=QA(N.onClick,g),UI("click",t)&&(c.onClick=QA(c.onClick,this.handleToggle)),UI("hover",t)&&(c.onMouseOver=QA(N.onMouseOver,o,this.handleMouseOver),c.onMouseOut=QA(N.onMouseOut,n,this.handleMouseOut)),UI("focus",t)&&(c.onFocus=QA(N.onFocus,i,this.handleDelayedShow),c.onBlur=QA(N.onBlur,I,this.handleDelayedHide)),this._overlay=this.makeOverlay(M,E),Object(a.cloneElement)(T,c)},t}(r.a.Component);FI.propTypes=fI,FI.defaultProps={defaultOverlayShown:!1,trigger:["hover","focus"]};var mI=FI,OI=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.className,M=A.children,e=V(D()(A,["className","children"])),I=e[0],g=e[1],n=b(I);return r.a.createElement("div",i()({},g,{className:Q()(t,n)}),r.a.createElement("h1",null,M))},t}(r.a.Component),RI=k("page-header",OI),kI={disabled:l.a.bool,previous:l.a.bool,next:l.a.bool,onClick:l.a.func,onSelect:l.a.func,eventKey:l.a.any},GI=function(A){function t(M,e){o()(this,t);var I=T()(this,A.call(this,M,e));return I.handleSelect=I.handleSelect.bind(I),I}return c()(t,A),t.prototype.handleSelect=function(A){var t=this.props,M=t.disabled,e=t.onSelect,I=t.eventKey;M?A.preventDefault():e&&e(I,A)},t.prototype.render=function(){var A=this.props,t=A.disabled,M=A.previous,e=A.next,I=A.onClick,g=A.className,n=A.style,o=D()(A,["disabled","previous","next","onClick","className","style"]);return delete o.onSelect,delete o.eventKey,r.a.createElement("li",{className:Q()(g,{disabled:t,previous:M,next:e}),style:n},r.a.createElement(yA,i()({},o,{disabled:t,onClick:QA(I,this.handleSelect)})))},t}(r.a.Component);GI.propTypes=kI,GI.defaultProps={disabled:!1,previous:!1,next:!1};var JI=GI,bI=M(129),HI=M.n(bI),vI={};function VI(A,t,M){var e=void 0;"object"===(void 0===A?"undefined":HI()(A))?e=A.message:(e=A+" is deprecated. Use "+t+" instead.",M&&(e+="\nYou can read more about it at "+M)),vI[e]||(vI[e]=!0)}VI.wrapper=function(A){for(var t=arguments.length,M=Array(t>1?t-1:0),e=1;e` + "`" + `","` + "`" + `` + "`" + `"),WI={onSelect:l.a.func},PI=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.onSelect,M=A.className,e=A.children,I=V(D()(A,["onSelect","className","children"])),g=I[0],n=I[1],o=b(g);return r.a.createElement("ul",i()({},n,{className:Q()(M,o)}),K.map(e,function(A){return Object(a.cloneElement)(A,{onSelect:QA(A.props.onSelect,t)})}))},t}(r.a.Component);PI.propTypes=WI,PI.Item=JI;var KI=k("pager",PI),ZI={eventKey:l.a.any,className:l.a.string,onSelect:l.a.func,disabled:l.a.bool,active:l.a.bool,activeLabel:l.a.string.isRequired};function qI(A){var t=A.active,M=A.disabled,e=A.className,I=A.style,g=A.activeLabel,n=A.children,o=D()(A,["active","disabled","className","style","activeLabel","children"]),E=t||M?"span":yA;return r.a.createElement("li",{style:I,className:Q()(e,{active:t,disabled:M})},r.a.createElement(E,i()({disabled:M},o),n,t&&r.a.createElement("span",{className:"sr-only"},g)))}function _I(A,t){var M,e,I=arguments.length>2&&void 0!==arguments[2]?arguments[2]:A;return e=M=function(A){function M(){return o()(this,M),T()(this,A.apply(this,arguments))}return c()(M,A),M.prototype.render=function(){var A=this.props,M=A.disabled,e=A.children,g=A.className,n=D()(A,["disabled","children","className"]),o=M?"span":yA;return r.a.createElement("li",i()({"aria-label":I,className:Q()(g,{disabled:M})},n),r.a.createElement(o,null,e||t))},M}(r.a.Component),M.displayName=A,M.propTypes={disabled:l.a.bool},e}qI.propTypes=ZI,qI.defaultProps={active:!1,disabled:!1,activeLabel:"(current)"};var $I=_I("First","«"),Ag=_I("Prev","‹"),tg=_I("Ellipsis","…","More"),Mg=_I("Next","›"),eg=_I("Last","»"),Ig=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.className,M=A.children,e=V(D()(A,["className","children"])),I=e[0],g=e[1],n=b(I);return r.a.createElement("ul",i()({},g,{className:Q()(t,n)}),M)},t}(r.a.Component);k("pagination",Ig),Ig.First=$I,Ig.Prev=Ag,Ig.Ellipsis=tg,Ig.Item=qI,Ig.Next=Mg,Ig.Last=eg;var gg=Ig,ig=M(191),ng=M.n(ig),og={onEnter:l.a.func,onEntering:l.a.func,onEntered:l.a.func,onExit:l.a.func,onExiting:l.a.func,onExited:l.a.func},Eg={$bs_panel:l.a.shape({headingId:l.a.string,bodyId:l.a.string,bsClass:l.a.string,expanded:l.a.bool})},Tg=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props.children,t=this.context.$bs_panel||{},M=t.headingId,e=t.bodyId,I=t.bsClass,g=t.expanded,n=V(this.props),o=n[0],E=n[1];return o.bsClass=I||o.bsClass,M&&e&&(E.id=e,E.role=E.role||"tabpanel",E["aria-labelledby"]=M),r.a.createElement(jt,i()({in:g},E),r.a.createElement("div",{className:R(o,"collapse")},A))},t}(r.a.Component);Tg.propTypes=og,Tg.contextTypes=Eg;var Ng=k("panel",Tg),cg={collapsible:l.a.bool.isRequired},ag={$bs_panel:l.a.shape({bsClass:l.a.string})},rg=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.children,M=A.className,e=A.collapsible,I=(this.context.$bs_panel||{}).bsClass,g=X(this.props,["collapsible"]),n=g[0],o=g[1];n.bsClass=I||n.bsClass;var E=r.a.createElement("div",i()({},o,{className:Q()(M,R(n,"body"))}),t);return e&&(E=r.a.createElement(Ng,null,E)),E},t}(r.a.Component);rg.propTypes=cg,rg.defaultProps={collapsible:!1},rg.contextTypes=ag;var Cg=k("panel",rg),Dg=M(95),Bg=M.n(Dg),Qg={componentClass:Bg.a},sg={$bs_panel:l.a.shape({headingId:l.a.string,bsClass:l.a.string})},lg=function(A){function t(){return o()(this,t),T()(this,A.apply(this,arguments))}return c()(t,A),t.prototype.render=function(){var A=this.props,t=A.children,M=A.className,e=A.componentClass,I=D()(A,["children","className","componentClass"]),g=this.context.$bs_panel||{},n=g.headingId,o=g.bsClass,E=V(I),T=E[0],N=E[1];return T.bsClass=o||T.bsClass,n&&(N.role=N.role||"tab",N.id=n),r.a.createElement(e,i()({},N,{className:Q()(M,R(T,"heading"))}),t)},t}(r.a.Component);lg.propTypes=Qg,lg.defaultProps={componentClass:"div"},lg.contextTypes=sg;var ug=k("panel",lg),yg={onClick:l.a.func,componentClass:Bg.a},xg={componentClass:yA},wg={$bs_panel:l.a.shape({bodyId:l.a.string,onToggle:l.a.func,expanded:l.a.bool})},jg=function(A){function t(){o()(this,t);for(var M=arguments.length,e=Array(M),I=0;I1?M-1:0),I=1;I0&&void 0!==arguments[0]&&arguments[0],t=this.nextStatus;if(null!==t){this.nextStatus=null,this.cancelNextCallback();var M=g.default.findDOMNode(this);t===E?this.performEnter(M,A):this.performExit(M)}else this.props.unmountOnExit&&this.state.status===o&&this.setState({status:n})},t.prototype.performEnter=function(A,t){var M=this,e=this.props.enter,I=this.context.transitionGroup?this.context.transitionGroup.isMounting:t,g=this.getTimeouts();t||e?(this.props.onEnter(A,I),this.safeSetState({status:E},function(){M.props.onEntering(A,I),M.onTransitionEnd(A,g.enter,function(){M.safeSetState({status:T},function(){M.props.onEntered(A,I)})})})):this.safeSetState({status:T},function(){M.props.onEntered(A)})},t.prototype.performExit=function(A){var t=this,M=this.props.exit,e=this.getTimeouts();M?(this.props.onExit(A),this.safeSetState({status:N},function(){t.props.onExiting(A),t.onTransitionEnd(A,e.exit,function(){t.safeSetState({status:o},function(){t.props.onExited(A)})})})):this.safeSetState({status:o},function(){t.props.onExited(A)})},t.prototype.cancelNextCallback=function(){null!==this.nextCallback&&(this.nextCallback.cancel(),this.nextCallback=null)},t.prototype.safeSetState=function(A,t){var M=this;this.pendingState=A,t=this.setNextCallback(t),this.setState(A,function(){M.pendingState=null,t()})},t.prototype.setNextCallback=function(A){var t=this,M=!0;return this.nextCallback=function(e){M&&(M=!1,t.nextCallback=null,A(e))},this.nextCallback.cancel=function(){M=!1},this.nextCallback},t.prototype.onTransitionEnd=function(A,t,M){this.setNextCallback(M),A?(this.props.addEndListener&&this.props.addEndListener(A,this.nextCallback),null!=t&&setTimeout(this.nextCallback,t)):setTimeout(this.nextCallback,0)},t.prototype.render=function(){var A=this.state.status;if(A===n)return null;var t=this.props,M=t.children,e=function(A,t){var M={};for(var e in A)t.indexOf(e)>=0||Object.prototype.hasOwnProperty.call(A,e)&&(M[e]=A[e]);return M}(t,["children"]);if(delete e.in,delete e.mountOnEnter,delete e.unmountOnExit,delete e.appear,delete e.enter,delete e.exit,delete e.timeout,delete e.addEndListener,delete e.onEnter,delete e.onEntering,delete e.onEntered,delete e.onExit,delete e.onExiting,delete e.onExited,"function"==typeof M)return M(A,e);var g=I.default.Children.only(M);return I.default.cloneElement(g,e)},t}(I.default.Component);function a(){}c.contextTypes={transitionGroup:e.object},c.childContextTypes={transitionGroup:function(){}},c.propTypes={},c.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:a,onEntering:a,onEntered:a,onExit:a,onExiting:a,onExited:a},c.UNMOUNTED=0,c.EXITED=1,c.ENTERING=2,c.ENTERED=3,c.EXITING=4,t.default=c},function(A,t){var M=A.exports={version:"2.4.0"};"number"==typeof __e&&(__e=M)},function(A,t,M){var e=M(33);A.exports=function(A,t,M){if(e(A),void 0===t)return A;switch(M){case 1:return function(M){return A.call(t,M)};case 2:return function(M,e){return A.call(t,M,e)};case 3:return function(M,e,I){return A.call(t,M,e,I)}}return function(){return A.apply(t,arguments)}}},function(A,t,M){"use strict";if(M(22)){var e=M(67),I=M(15),g=M(17),i=M(8),n=M(120),o=M(159),E=M(55),T=M(73),N=M(59),c=M(31),a=M(74),r=M(61),C=M(24),D=M(69),B=M(43),Q=M(28),s=M(206),l=M(100),u=M(19),y=M(25),x=M(151),w=M(70),j=M(37),Y=M(71).f,d=M(153),h=M(66),L=M(21),S=M(45),z=M(112),U=M(156),p=M(155),f=M(81),F=M(116),m=M(72),O=M(154),R=M(215),k=M(23),G=M(36),J=k.f,b=G.f,H=I.RangeError,v=I.TypeError,V=I.Uint8Array,X=Array.prototype,W=o.ArrayBuffer,P=o.DataView,K=S(0),Z=S(2),q=S(3),_=S(4),$=S(5),AA=S(6),tA=z(!0),MA=z(!1),eA=p.values,IA=p.keys,gA=p.entries,iA=X.lastIndexOf,nA=X.reduce,oA=X.reduceRight,EA=X.join,TA=X.sort,NA=X.slice,cA=X.toString,aA=X.toLocaleString,rA=L("iterator"),CA=L("toStringTag"),DA=h("typed_constructor"),BA=h("def_constructor"),QA=n.CONSTR,sA=n.TYPED,lA=n.VIEW,uA=S(1,function(A,t){return dA(U(A,A[BA]),t)}),yA=g(function(){return 1===new V(new Uint16Array([1]).buffer)[0]}),xA=!!V&&!!V.prototype.set&&g(function(){new V(1).set({})}),wA=function(A,t){if(void 0===A)throw v("Wrong length!");var M=+A,e=C(A);if(t&&!s(M,e))throw H("Wrong length!");return e},jA=function(A,t){var M=r(A);if(M<0||M%t)throw H("Wrong offset!");return M},YA=function(A){if(u(A)&&sA in A)return A;throw v(A+" is not a typed array!")},dA=function(A,t){if(!(u(A)&&DA in A))throw v("It is not a typed array constructor!");return new A(t)},hA=function(A,t){return LA(U(A,A[BA]),t)},LA=function(A,t){for(var M=0,e=t.length,I=dA(A,e);e>M;)I[M]=t[M++];return I},SA=function(A,t,M){J(A,t,{get:function(){return this._d[M]}})},zA=function(A){var t,M,e,I,g,i,n=y(A),o=arguments.length,T=o>1?arguments[1]:void 0,N=void 0!==T,c=d(n);if(null!=c&&!x(c)){for(i=c.call(n),e=[],t=0;!(g=i.next()).done;t++)e.push(g.value);n=e}for(N&&o>2&&(T=E(T,arguments[2],2)),t=0,M=C(n.length),I=dA(this,M);M>t;t++)I[t]=N?T(n[t],t):n[t];return I},UA=function(){for(var A=0,t=arguments.length,M=dA(this,t);t>A;)M[A]=arguments[A++];return M},pA=!!V&&g(function(){aA.call(new V(1))}),fA=function(){return aA.apply(pA?NA.call(YA(this)):YA(this),arguments)},FA={copyWithin:function(A,t){return R.call(YA(this),A,t,arguments.length>2?arguments[2]:void 0)},every:function(A){return _(YA(this),A,arguments.length>1?arguments[1]:void 0)},fill:function(A){return O.apply(YA(this),arguments)},filter:function(A){return hA(this,Z(YA(this),A,arguments.length>1?arguments[1]:void 0))},find:function(A){return $(YA(this),A,arguments.length>1?arguments[1]:void 0)},findIndex:function(A){return AA(YA(this),A,arguments.length>1?arguments[1]:void 0)},forEach:function(A){K(YA(this),A,arguments.length>1?arguments[1]:void 0)},indexOf:function(A){return MA(YA(this),A,arguments.length>1?arguments[1]:void 0)},includes:function(A){return tA(YA(this),A,arguments.length>1?arguments[1]:void 0)},join:function(A){return EA.apply(YA(this),arguments)},lastIndexOf:function(A){return iA.apply(YA(this),arguments)},map:function(A){return uA(YA(this),A,arguments.length>1?arguments[1]:void 0)},reduce:function(A){return nA.apply(YA(this),arguments)},reduceRight:function(A){return oA.apply(YA(this),arguments)},reverse:function(){for(var A,t=YA(this).length,M=Math.floor(t/2),e=0;e1?arguments[1]:void 0)},sort:function(A){return TA.call(YA(this),A)},subarray:function(A,t){var M=YA(this),e=M.length,I=D(A,e);return new(U(M,M[BA]))(M.buffer,M.byteOffset+I*M.BYTES_PER_ELEMENT,C((void 0===t?e:D(t,e))-I))}},mA=function(A,t){return hA(this,NA.call(YA(this),A,t))},OA=function(A){YA(this);var t=jA(arguments[1],1),M=this.length,e=y(A),I=C(e.length),g=0;if(I+t>M)throw H("Wrong length!");for(;g255?255:255&e),I.v[r](M*t+I.o,e,yA)}(this,M,A)},enumerable:!0})};s?(D=M(function(A,M,e,I){T(A,D,E,"_d");var g,i,n,o,N=0,a=0;if(u(M)){if(!(M instanceof W||"ArrayBuffer"==(o=l(M))||"SharedArrayBuffer"==o))return sA in M?LA(D,M):zA.call(D,M);g=M,a=jA(e,t);var r=M.byteLength;if(void 0===I){if(r%t)throw H("Wrong length!");if((i=r-a)<0)throw H("Wrong length!")}else if((i=C(I)*t)+a>r)throw H("Wrong length!");n=i/t}else n=wA(M,!0),g=new W(i=n*t);for(c(A,"_d",{b:g,o:a,l:i,e:n,v:new P(g)});N>",n=g||M;if(null==t[M])return new Error("The "+I+" ` + "`" + `"+n+"` + "`" + ` is required to make ` + "`" + `"+i+"` + "`" + ` accessible for users of assistive technologies such as screen readers.");for(var o=arguments.length,E=Array(o>5?o-5:0),T=5;T0?e:M)(A)}},function(A,t,M){var e=M(63),I=M(48),g=M(166),i=M(86),n=function(A,t,M){var o,E,T,N=A&n.F,c=A&n.G,a=A&n.S,r=A&n.P,C=A&n.B,D=A&n.W,B=c?I:I[t]||(I[t]={}),Q=B.prototype,s=c?e:a?e[t]:(e[t]||{}).prototype;for(o in c&&(M=t),M)(E=!N&&s&&void 0!==s[o])&&o in B||(T=E?s[o]:M[o],B[o]=c&&"function"!=typeof s[o]?M[o]:C&&E?g(T,e):D&&s[o]==T?function(A){var t=function(t,M,e){if(this instanceof A){switch(arguments.length){case 0:return new A;case 1:return new A(t);case 2:return new A(t,M)}return new A(t,M,e)}return A.apply(this,arguments)};return t.prototype=A.prototype,t}(T):r&&"function"==typeof T?g(Function.call,T):T,r&&((B.virtual||(B.virtual={}))[o]=T,A&n.R&&Q&&!Q[o]&&i(Q,o,T)))};n.F=1,n.G=2,n.S=4,n.P=8,n.B=16,n.W=32,n.U=64,n.R=128,A.exports=n},function(A,t){var M=A.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=M)},function(A,t,M){var e=M(239),I=M(169);A.exports=function(A){return e(I(A))}},function(A,t,M){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=!("undefined"==typeof window||!window.document||!window.document.createElement),A.exports=t.default},function(A,t){var M=0,e=Math.random();A.exports=function(A){return"Symbol(".concat(void 0===A?"":A,")_",(++M+e).toString(36))}},function(A,t){A.exports=!1},function(A,t,M){var e=M(202),I=M(137);A.exports=Object.keys||function(A){return e(A,I)}},function(A,t,M){var e=M(61),I=Math.max,g=Math.min;A.exports=function(A,t){return(A=e(A))<0?I(A+t,0):g(A,t)}},function(A,t,M){var e=M(13),I=M(203),g=M(137),i=M(136)("IE_PROTO"),n=function(){},o=function(){var A,t=M(134)("iframe"),e=g.length;for(t.style.display="none",M(139).appendChild(t),t.src="javascript:",(A=t.contentWindow.document).open(),A.write("