root 5 years ago
parent
commit
67f8a9433a
100 changed files with 29335 additions and 9 deletions
  1. 33 0
      .env
  2. 0 4
      .gitignore
  3. 6894 0
      composer.lock
  4. BIN
      icon.jpg
  5. 5755 0
      install.php
  6. 9 5
      manifest.xml
  7. 7 0
      vendor/autoload.php
  8. 15 0
      vendor/barryvdh/laravel-ide-helper/.editorconfig
  9. 1 0
      vendor/barryvdh/laravel-ide-helper/.styleci.yml
  10. 21 0
      vendor/barryvdh/laravel-ide-helper/LICENSE.md
  11. 57 0
      vendor/barryvdh/laravel-ide-helper/composer.json
  12. 181 0
      vendor/barryvdh/laravel-ide-helper/config/ide-helper.php
  13. 15 0
      vendor/barryvdh/laravel-ide-helper/grumphp.yml
  14. 262 0
      vendor/barryvdh/laravel-ide-helper/readme.md
  15. 93 0
      vendor/barryvdh/laravel-ide-helper/resources/views/helper.php
  16. 53 0
      vendor/barryvdh/laravel-ide-helper/resources/views/meta.php
  17. 414 0
      vendor/barryvdh/laravel-ide-helper/src/Alias.php
  18. 61 0
      vendor/barryvdh/laravel-ide-helper/src/Console/EloquentCommand.php
  19. 169 0
      vendor/barryvdh/laravel-ide-helper/src/Console/GeneratorCommand.php
  20. 155 0
      vendor/barryvdh/laravel-ide-helper/src/Console/MetaCommand.php
  21. 814 0
      vendor/barryvdh/laravel-ide-helper/src/Console/ModelsCommand.php
  22. 78 0
      vendor/barryvdh/laravel-ide-helper/src/Eloquent.php
  23. 324 0
      vendor/barryvdh/laravel-ide-helper/src/Generator.php
  24. 124 0
      vendor/barryvdh/laravel-ide-helper/src/IdeHelperServiceProvider.php
  25. 52 0
      vendor/barryvdh/laravel-ide-helper/src/Macro.php
  26. 314 0
      vendor/barryvdh/laravel-ide-helper/src/Method.php
  27. 2 0
      vendor/barryvdh/reflection-docblock/.gitignore
  28. 32 0
      vendor/barryvdh/reflection-docblock/.travis.yml
  29. 21 0
      vendor/barryvdh/reflection-docblock/LICENSE
  30. 57 0
      vendor/barryvdh/reflection-docblock/README.md
  31. 26 0
      vendor/barryvdh/reflection-docblock/composer.json
  32. 864 0
      vendor/barryvdh/reflection-docblock/composer.lock
  33. 14 0
      vendor/barryvdh/reflection-docblock/phpunit.xml.dist
  34. 468 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock.php
  35. 154 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Context.php
  36. 223 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Description.php
  37. 76 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Location.php
  38. 198 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Serializer.php
  39. 377 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag.php
  40. 131 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/AuthorTag.php
  41. 24 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/CoversTag.php
  42. 26 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/DeprecatedTag.php
  43. 156 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/ExampleTag.php
  44. 81 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/LinkTag.php
  45. 209 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/MethodTag.php
  46. 119 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/ParamTag.php
  47. 24 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/PropertyReadTag.php
  48. 24 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/PropertyTag.php
  49. 24 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/PropertyWriteTag.php
  50. 128 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/ReturnTag.php
  51. 81 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/SeeTag.php
  52. 26 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/SinceTag.php
  53. 137 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/SourceTag.php
  54. 24 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/ThrowsTag.php
  55. 24 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/UsesTag.php
  56. 24 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/VarTag.php
  57. 108 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/VersionTag.php
  58. 245 0
      vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Type/Collection.php
  59. 245 0
      vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/DescriptionTest.php
  60. 86 0
      vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/CoversTagTest.php
  61. 115 0
      vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/DeprecatedTagTest.php
  62. 203 0
      vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/ExampleTagTest.php
  63. 87 0
      vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/LinkTagTest.php
  64. 146 0
      vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/MethodTagTest.php
  65. 118 0
      vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/ParamTagTest.php
  66. 102 0
      vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/ReturnTagTest.php
  67. 86 0
      vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/SeeTagTest.php
  68. 115 0
      vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/SinceTagTest.php
  69. 116 0
      vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/SourceTagTest.php
  70. 102 0
      vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/ThrowsTagTest.php
  71. 86 0
      vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/UsesTagTest.php
  72. 94 0
      vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/VarTagTest.php
  73. 115 0
      vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/VersionTagTest.php
  74. 313 0
      vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/TagTest.php
  75. 253 0
      vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Type/CollectionTest.php
  76. 337 0
      vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlockTest.php
  77. 1 0
      vendor/bin/composer
  78. 1 0
      vendor/bin/doctrine-dbal
  79. 1 0
      vendor/bin/generate-defuse-key
  80. 1 0
      vendor/bin/jsonlint
  81. 1 0
      vendor/bin/php-parse
  82. 1 0
      vendor/bin/phpunit
  83. 1 0
      vendor/bin/psysh
  84. 1 0
      vendor/bin/validate-json
  85. 445 0
      vendor/composer/ClassLoader.php
  86. 21 0
      vendor/composer/LICENSE
  87. 774 0
      vendor/composer/autoload_classmap.php
  88. 41 0
      vendor/composer/autoload_files.php
  89. 19 0
      vendor/composer/autoload_namespaces.php
  90. 93 0
      vendor/composer/autoload_psr4.php
  91. 70 0
      vendor/composer/autoload_real.php
  92. 1366 0
      vendor/composer/autoload_static.php
  93. 19 0
      vendor/composer/ca-bundle/LICENSE
  94. 85 0
      vendor/composer/ca-bundle/README.md
  95. 54 0
      vendor/composer/ca-bundle/composer.json
  96. 3240 0
      vendor/composer/ca-bundle/res/cacert.pem
  97. 262 0
      vendor/composer/ca-bundle/src/CaBundle.php
  98. 12 0
      vendor/composer/composer/.gitattributes
  99. 54 0
      vendor/composer/composer/.github/CONTRIBUTING.md
  100. 25 0
      vendor/composer/composer/.github/ISSUE_TEMPLATE.md

+ 33 - 0
.env

xqd
@@ -0,0 +1,33 @@
+APP_ENV=local
+APP_KEY=base64:n2nhmq6W1vnd/y44Xf/7Iq480YcmUywEuuzwK8ajgRc=
+APP_DEBUG=true
+APP_LOG_LEVEL=debug
+APP_URL=https://ins/addons/furnitureWe7/public/
+CDN_URL=https://t6.9026.com/addons/furnitureWe7/public/
+
+DB_CONNECTION=mysql
+DB_HOST=127.0.0.1
+DB_PORT=3306
+DB_DATABASE=furniture
+DB_USERNAME=root
+DB_PASSWORD=swdz123456
+
+BROADCAST_DRIVER=log
+CACHE_DRIVER=file
+SESSION_DRIVER=file
+QUEUE_DRIVER=sync
+
+REDIS_HOST=127.0.0.1
+REDIS_PASSWORD=null
+REDIS_PORT=6379
+
+MAIL_DRIVER=smtp
+MAIL_HOST=smtp.mailtrap.io
+MAIL_PORT=2525
+MAIL_USERNAME=null
+MAIL_PASSWORD=null
+MAIL_ENCRYPTION=null
+
+PUSHER_APP_ID=
+PUSHER_APP_KEY=
+PUSHER_APP_SECRET=

+ 0 - 4
.gitignore

xqd
@@ -2,14 +2,10 @@
 /public/storage
 /public/hot
 /storage/*.key
-/vendor
 /.idea
 Homestead.json
 Homestead.yaml
-.env
-.phpstorm.meta.php
 _ide_helper*
-*.lock
 /storage/logs
 /public/upload
 /public/download

+ 6894 - 0
composer.lock

xqd
@@ -0,0 +1,6894 @@
+{
+    "_readme": [
+        "This file locks the dependencies of your project to a known state",
+        "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
+        "This file is @generated automatically"
+    ],
+    "content-hash": "b9af14cb34a6b0d1bf6b984044e1d07f",
+    "packages": [
+        {
+            "name": "defuse/php-encryption",
+            "version": "v2.2.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/defuse/php-encryption.git",
+                "reference": "0f407c43b953d571421e0020ba92082ed5fb7620"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/defuse/php-encryption/zipball/0f407c43b953d571421e0020ba92082ed5fb7620",
+                "reference": "0f407c43b953d571421e0020ba92082ed5fb7620",
+                "shasum": ""
+            },
+            "require": {
+                "ext-openssl": "*",
+                "paragonie/random_compat": ">= 2",
+                "php": ">=5.4.0"
+            },
+            "require-dev": {
+                "nikic/php-parser": "^2.0|^3.0|^4.0",
+                "phpunit/phpunit": "^4|^5"
+            },
+            "bin": [
+                "bin/generate-defuse-key"
+            ],
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Defuse\\Crypto\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Taylor Hornby",
+                    "email": "taylor@defuse.ca",
+                    "homepage": "https://defuse.ca/"
+                },
+                {
+                    "name": "Scott Arciszewski",
+                    "email": "info@paragonie.com",
+                    "homepage": "https://paragonie.com"
+                }
+            ],
+            "description": "Secure PHP Encryption Library",
+            "keywords": [
+                "aes",
+                "authenticated encryption",
+                "cipher",
+                "crypto",
+                "cryptography",
+                "encrypt",
+                "encryption",
+                "openssl",
+                "security",
+                "symmetric key cryptography"
+            ],
+            "time": "2018-07-24T23:27:56+00:00"
+        },
+        {
+            "name": "dingo/api",
+            "version": "dev-master",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/dingo/api.git",
+                "reference": "21092f34aa330170f566b561c838ad1e33ccb53e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/dingo/api/zipball/21092f34aa330170f566b561c838ad1e33ccb53e",
+                "reference": "21092f34aa330170f566b561c838ad1e33ccb53e",
+                "shasum": ""
+            },
+            "require": {
+                "dingo/blueprint": "^0.2",
+                "illuminate/routing": "^5.1",
+                "illuminate/support": "^5.1",
+                "league/fractal": "^0.17",
+                "php": "^7.0"
+            },
+            "require-dev": {
+                "friendsofphp/php-cs-fixer": "~2",
+                "illuminate/auth": "^5.1",
+                "illuminate/cache": "^5.1",
+                "illuminate/console": "^5.1",
+                "illuminate/database": "^5.1",
+                "illuminate/events": "^5.1",
+                "illuminate/filesystem": "^5.1",
+                "illuminate/log": "^5.1",
+                "illuminate/pagination": "^5.1",
+                "laravel/lumen-framework": "^5.1",
+                "mockery/mockery": "~1.0",
+                "phpdocumentor/reflection-docblock": "3.3.2",
+                "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.5",
+                "squizlabs/php_codesniffer": "~2.0",
+                "tymon/jwt-auth": "1.0.*"
+            },
+            "suggest": {
+                "tymon/jwt-auth": "Protect your API with JSON Web Tokens."
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.0-dev"
+                },
+                "laravel": {
+                    "providers": [
+                        "Dingo\\Api\\Provider\\LaravelServiceProvider"
+                    ],
+                    "aliases": {
+                        "API": "Dingo\\Api\\Facade\\API"
+                    }
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Dingo\\Api\\": "src/"
+                },
+                "files": [
+                    "src/helpers.php"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Jason Lewis",
+                    "email": "jason.lewis1991@gmail.com"
+                }
+            ],
+            "description": "A RESTful API package for the Laravel and Lumen frameworks.",
+            "keywords": [
+                "api",
+                "dingo",
+                "laravel",
+                "restful"
+            ],
+            "time": "2018-08-21T00:04:58+00:00"
+        },
+        {
+            "name": "dingo/blueprint",
+            "version": "v0.2.4",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/dingo/blueprint.git",
+                "reference": "1dc93b8ea443fbbdaaca0582572ee6ca53afccfd"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/dingo/blueprint/zipball/1dc93b8ea443fbbdaaca0582572ee6ca53afccfd",
+                "reference": "1dc93b8ea443fbbdaaca0582572ee6ca53afccfd",
+                "shasum": ""
+            },
+            "require": {
+                "doctrine/annotations": "~1.2",
+                "illuminate/filesystem": "^5.1",
+                "illuminate/support": "^5.1",
+                "php": ">=5.5.9",
+                "phpdocumentor/reflection-docblock": "^3.1"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "~4.0",
+                "squizlabs/php_codesniffer": "~2.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "0.2-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Dingo\\Blueprint\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Jason Lewis",
+                    "email": "jason.lewis1991@gmail.com"
+                }
+            ],
+            "description": "API Blueprint documentation generator.",
+            "keywords": [
+                "api",
+                "blueprint",
+                "dingo",
+                "docs",
+                "laravel"
+            ],
+            "time": "2017-12-05T12:02:08+00:00"
+        },
+        {
+            "name": "dnoegel/php-xdg-base-dir",
+            "version": "0.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
+                "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
+                "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.2"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "@stable"
+            },
+            "type": "project",
+            "autoload": {
+                "psr-4": {
+                    "XdgBaseDir\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "description": "implementation of xdg base directory specification for php",
+            "time": "2014-10-24T07:27:01+00:00"
+        },
+        {
+            "name": "doctrine/annotations",
+            "version": "v1.6.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/doctrine/annotations.git",
+                "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/doctrine/annotations/zipball/c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
+                "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
+                "shasum": ""
+            },
+            "require": {
+                "doctrine/lexer": "1.*",
+                "php": "^7.1"
+            },
+            "require-dev": {
+                "doctrine/cache": "1.*",
+                "phpunit/phpunit": "^6.4"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.6.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Roman Borschel",
+                    "email": "roman@code-factory.org"
+                },
+                {
+                    "name": "Benjamin Eberlei",
+                    "email": "kontakt@beberlei.de"
+                },
+                {
+                    "name": "Guilherme Blanco",
+                    "email": "guilhermeblanco@gmail.com"
+                },
+                {
+                    "name": "Jonathan Wage",
+                    "email": "jonwage@gmail.com"
+                },
+                {
+                    "name": "Johannes Schmitt",
+                    "email": "schmittjoh@gmail.com"
+                }
+            ],
+            "description": "Docblock Annotations Parser",
+            "homepage": "http://www.doctrine-project.org",
+            "keywords": [
+                "annotations",
+                "docblock",
+                "parser"
+            ],
+            "time": "2017-12-06T07:11:42+00:00"
+        },
+        {
+            "name": "doctrine/cache",
+            "version": "v1.8.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/doctrine/cache.git",
+                "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57",
+                "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57",
+                "shasum": ""
+            },
+            "require": {
+                "php": "~7.1"
+            },
+            "conflict": {
+                "doctrine/common": ">2.2,<2.4"
+            },
+            "require-dev": {
+                "alcaeus/mongo-php-adapter": "^1.1",
+                "doctrine/coding-standard": "^4.0",
+                "mongodb/mongodb": "^1.1",
+                "phpunit/phpunit": "^7.0",
+                "predis/predis": "~1.0"
+            },
+            "suggest": {
+                "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.8.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Roman Borschel",
+                    "email": "roman@code-factory.org"
+                },
+                {
+                    "name": "Benjamin Eberlei",
+                    "email": "kontakt@beberlei.de"
+                },
+                {
+                    "name": "Guilherme Blanco",
+                    "email": "guilhermeblanco@gmail.com"
+                },
+                {
+                    "name": "Jonathan Wage",
+                    "email": "jonwage@gmail.com"
+                },
+                {
+                    "name": "Johannes Schmitt",
+                    "email": "schmittjoh@gmail.com"
+                }
+            ],
+            "description": "Caching library offering an object-oriented API for many cache backends",
+            "homepage": "https://www.doctrine-project.org",
+            "keywords": [
+                "cache",
+                "caching"
+            ],
+            "time": "2018-08-21T18:01:43+00:00"
+        },
+        {
+            "name": "doctrine/dbal",
+            "version": "v2.8.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/doctrine/dbal.git",
+                "reference": "5140a64c08b4b607b9bedaae0cedd26f04a0e621"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/doctrine/dbal/zipball/5140a64c08b4b607b9bedaae0cedd26f04a0e621",
+                "reference": "5140a64c08b4b607b9bedaae0cedd26f04a0e621",
+                "shasum": ""
+            },
+            "require": {
+                "doctrine/cache": "^1.0",
+                "doctrine/event-manager": "^1.0",
+                "ext-pdo": "*",
+                "php": "^7.1"
+            },
+            "require-dev": {
+                "doctrine/coding-standard": "^4.0",
+                "jetbrains/phpstorm-stubs": "^2018.1.2",
+                "phpstan/phpstan": "^0.10.1",
+                "phpunit/phpunit": "^7.1.2",
+                "phpunit/phpunit-mock-objects": "!=3.2.4,!=3.2.5",
+                "symfony/console": "^2.0.5|^3.0|^4.0",
+                "symfony/phpunit-bridge": "^3.4.5|^4.0.5"
+            },
+            "suggest": {
+                "symfony/console": "For helpful console commands such as SQL execution and import of files."
+            },
+            "bin": [
+                "bin/doctrine-dbal"
+            ],
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.8.x-dev",
+                    "dev-develop": "3.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-0": {
+                    "Doctrine\\DBAL\\": "lib/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Roman Borschel",
+                    "email": "roman@code-factory.org"
+                },
+                {
+                    "name": "Benjamin Eberlei",
+                    "email": "kontakt@beberlei.de"
+                },
+                {
+                    "name": "Guilherme Blanco",
+                    "email": "guilhermeblanco@gmail.com"
+                },
+                {
+                    "name": "Jonathan Wage",
+                    "email": "jonwage@gmail.com"
+                }
+            ],
+            "description": "Database Abstraction Layer",
+            "homepage": "http://www.doctrine-project.org",
+            "keywords": [
+                "database",
+                "dbal",
+                "persistence",
+                "queryobject"
+            ],
+            "time": "2018-07-13T03:16:35+00:00"
+        },
+        {
+            "name": "doctrine/event-manager",
+            "version": "v1.0.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/doctrine/event-manager.git",
+                "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3",
+                "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.1"
+            },
+            "conflict": {
+                "doctrine/common": "<2.9@dev"
+            },
+            "require-dev": {
+                "doctrine/coding-standard": "^4.0",
+                "phpunit/phpunit": "^7.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Doctrine\\Common\\": "lib/Doctrine/Common"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Roman Borschel",
+                    "email": "roman@code-factory.org"
+                },
+                {
+                    "name": "Benjamin Eberlei",
+                    "email": "kontakt@beberlei.de"
+                },
+                {
+                    "name": "Guilherme Blanco",
+                    "email": "guilhermeblanco@gmail.com"
+                },
+                {
+                    "name": "Jonathan Wage",
+                    "email": "jonwage@gmail.com"
+                },
+                {
+                    "name": "Johannes Schmitt",
+                    "email": "schmittjoh@gmail.com"
+                },
+                {
+                    "name": "Marco Pivetta",
+                    "email": "ocramius@gmail.com"
+                }
+            ],
+            "description": "Doctrine Event Manager component",
+            "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
+            "keywords": [
+                "event",
+                "eventdispatcher",
+                "eventmanager"
+            ],
+            "time": "2018-06-11T11:59:03+00:00"
+        },
+        {
+            "name": "doctrine/inflector",
+            "version": "v1.3.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/doctrine/inflector.git",
+                "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
+                "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.1"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^6.2"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.3.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Roman Borschel",
+                    "email": "roman@code-factory.org"
+                },
+                {
+                    "name": "Benjamin Eberlei",
+                    "email": "kontakt@beberlei.de"
+                },
+                {
+                    "name": "Guilherme Blanco",
+                    "email": "guilhermeblanco@gmail.com"
+                },
+                {
+                    "name": "Jonathan Wage",
+                    "email": "jonwage@gmail.com"
+                },
+                {
+                    "name": "Johannes Schmitt",
+                    "email": "schmittjoh@gmail.com"
+                }
+            ],
+            "description": "Common String Manipulations with regard to casing and singular/plural rules.",
+            "homepage": "http://www.doctrine-project.org",
+            "keywords": [
+                "inflection",
+                "pluralize",
+                "singularize",
+                "string"
+            ],
+            "time": "2018-01-09T20:05:19+00:00"
+        },
+        {
+            "name": "doctrine/lexer",
+            "version": "v1.0.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/doctrine/lexer.git",
+                "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
+                "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.2"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-0": {
+                    "Doctrine\\Common\\Lexer\\": "lib/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Roman Borschel",
+                    "email": "roman@code-factory.org"
+                },
+                {
+                    "name": "Guilherme Blanco",
+                    "email": "guilhermeblanco@gmail.com"
+                },
+                {
+                    "name": "Johannes Schmitt",
+                    "email": "schmittjoh@gmail.com"
+                }
+            ],
+            "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
+            "homepage": "http://www.doctrine-project.org",
+            "keywords": [
+                "lexer",
+                "parser"
+            ],
+            "time": "2014-09-09T13:34:57+00:00"
+        },
+        {
+            "name": "dsiddharth2/php-zxing",
+            "version": "1.0.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/dsiddharth2/php-zxing.git",
+                "reference": "991c4edad5056b7d0f6010b3e2228ecd761ad719"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/dsiddharth2/php-zxing/zipball/991c4edad5056b7d0f6010b3e2228ecd761ad719",
+                "reference": "991c4edad5056b7d0f6010b3e2228ecd761ad719",
+                "shasum": ""
+            },
+            "type": "library",
+            "autoload": {
+                "psr-0": {
+                    "": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Siddharth",
+                    "email": "dsiddharth2@gmail.com"
+                }
+            ],
+            "description": "Wrapper for zxing using php",
+            "time": "2018-04-28T17:36:38+00:00"
+        },
+        {
+            "name": "easywechat-composer/easywechat-composer",
+            "version": "1.1.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/mingyoung/easywechat-composer.git",
+                "reference": "7127394b776ba626f61c893eaf75151c7897bcf3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/7127394b776ba626f61c893eaf75151c7897bcf3",
+                "reference": "7127394b776ba626f61c893eaf75151c7897bcf3",
+                "shasum": ""
+            },
+            "require": {
+                "composer-plugin-api": "^1.0",
+                "php": ">=7.0"
+            },
+            "require-dev": {
+                "composer/composer": "^1.0",
+                "phpunit/phpunit": "^7.0"
+            },
+            "type": "composer-plugin",
+            "extra": {
+                "class": "EasyWeChatComposer\\Plugin"
+            },
+            "autoload": {
+                "psr-4": {
+                    "EasyWeChatComposer\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "张铭阳",
+                    "email": "mingyoungcheung@gmail.com"
+                }
+            ],
+            "description": "The composer plugin for EasyWeChat",
+            "time": "2018-10-18T13:39:07+00:00"
+        },
+        {
+            "name": "egulias/email-validator",
+            "version": "2.1.6",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/egulias/EmailValidator.git",
+                "reference": "0578b32b30b22de3e8664f797cf846fc9246f786"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0578b32b30b22de3e8664f797cf846fc9246f786",
+                "reference": "0578b32b30b22de3e8664f797cf846fc9246f786",
+                "shasum": ""
+            },
+            "require": {
+                "doctrine/lexer": "^1.0.1",
+                "php": ">= 5.5"
+            },
+            "require-dev": {
+                "dominicsayers/isemail": "dev-master",
+                "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
+                "satooshi/php-coveralls": "^1.0.1"
+            },
+            "suggest": {
+                "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Egulias\\EmailValidator\\": "EmailValidator"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Eduardo Gulias Davis"
+                }
+            ],
+            "description": "A library for validating emails against several RFCs",
+            "homepage": "https://github.com/egulias/EmailValidator",
+            "keywords": [
+                "email",
+                "emailvalidation",
+                "emailvalidator",
+                "validation",
+                "validator"
+            ],
+            "time": "2018-09-25T20:47:26+00:00"
+        },
+        {
+            "name": "erusev/parsedown",
+            "version": "1.7.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/erusev/parsedown.git",
+                "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/erusev/parsedown/zipball/92e9c27ba0e74b8b028b111d1b6f956a15c01fc1",
+                "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1",
+                "shasum": ""
+            },
+            "require": {
+                "ext-mbstring": "*",
+                "php": ">=5.3.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^4.8.35"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-0": {
+                    "Parsedown": ""
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Emanuil Rusev",
+                    "email": "hello@erusev.com",
+                    "homepage": "http://erusev.com"
+                }
+            ],
+            "description": "Parser for Markdown.",
+            "homepage": "http://parsedown.org",
+            "keywords": [
+                "markdown",
+                "parser"
+            ],
+            "time": "2018-03-08T01:11:30+00:00"
+        },
+        {
+            "name": "fideloper/proxy",
+            "version": "3.3.4",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/fideloper/TrustedProxy.git",
+                "reference": "9cdf6f118af58d89764249bbcc7bb260c132924f"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9cdf6f118af58d89764249bbcc7bb260c132924f",
+                "reference": "9cdf6f118af58d89764249bbcc7bb260c132924f",
+                "shasum": ""
+            },
+            "require": {
+                "illuminate/contracts": "~5.0",
+                "php": ">=5.4.0"
+            },
+            "require-dev": {
+                "illuminate/http": "~5.0",
+                "mockery/mockery": "~0.9.3",
+                "phpunit/phpunit": "^5.7"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.3-dev"
+                },
+                "laravel": {
+                    "providers": [
+                        "Fideloper\\Proxy\\TrustedProxyServiceProvider"
+                    ]
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Fideloper\\Proxy\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Chris Fidao",
+                    "email": "fideloper@gmail.com"
+                }
+            ],
+            "description": "Set trusted proxies for Laravel",
+            "keywords": [
+                "load balancing",
+                "proxy",
+                "trusted proxy"
+            ],
+            "time": "2017-06-15T17:19:42+00:00"
+        },
+        {
+            "name": "firebase/php-jwt",
+            "version": "v5.0.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/firebase/php-jwt.git",
+                "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/firebase/php-jwt/zipball/9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
+                "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": " 4.8.35"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Firebase\\JWT\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Neuman Vong",
+                    "email": "neuman+pear@twilio.com",
+                    "role": "Developer"
+                },
+                {
+                    "name": "Anant Narayanan",
+                    "email": "anant@php.net",
+                    "role": "Developer"
+                }
+            ],
+            "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
+            "homepage": "https://github.com/firebase/php-jwt",
+            "time": "2017-06-27T22:17:23+00:00"
+        },
+        {
+            "name": "germey/geetest",
+            "version": "v3.0.7",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/Germey/LaravelGeetest.git",
+                "reference": "311e9b4e496b4e44cc570f29a2e17028a3454652"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/Germey/LaravelGeetest/zipball/311e9b4e496b4e44cc570f29a2e17028a3454652",
+                "reference": "311e9b4e496b4e44cc570f29a2e17028a3454652",
+                "shasum": ""
+            },
+            "require": {
+                "laravel/framework": "5.*",
+                "php": ">=5.6.0"
+            },
+            "require-dev": {
+                "mockery/mockery": "dev-master",
+                "phpunit/phpunit": "~4.1"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.1-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Germey\\Geetest\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Germey",
+                    "email": "cqc@cuiqingcai.com"
+                }
+            ],
+            "description": "Geetest Package for Laravel5",
+            "keywords": [
+                "Germey",
+                "geetest",
+                "laravel"
+            ],
+            "time": "2018-07-12T12:06:28+00:00"
+        },
+        {
+            "name": "guzzlehttp/guzzle",
+            "version": "6.3.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/guzzle/guzzle.git",
+                "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
+                "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
+                "shasum": ""
+            },
+            "require": {
+                "guzzlehttp/promises": "^1.0",
+                "guzzlehttp/psr7": "^1.4",
+                "php": ">=5.5"
+            },
+            "require-dev": {
+                "ext-curl": "*",
+                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
+                "psr/log": "^1.0"
+            },
+            "suggest": {
+                "psr/log": "Required for using the Log middleware"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "6.3-dev"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "src/functions_include.php"
+                ],
+                "psr-4": {
+                    "GuzzleHttp\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Michael Dowling",
+                    "email": "mtdowling@gmail.com",
+                    "homepage": "https://github.com/mtdowling"
+                }
+            ],
+            "description": "Guzzle is a PHP HTTP client library",
+            "homepage": "http://guzzlephp.org/",
+            "keywords": [
+                "client",
+                "curl",
+                "framework",
+                "http",
+                "http client",
+                "rest",
+                "web service"
+            ],
+            "time": "2018-04-22T15:46:56+00:00"
+        },
+        {
+            "name": "guzzlehttp/promises",
+            "version": "v1.3.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/guzzle/promises.git",
+                "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
+                "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.5.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^4.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.4-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "GuzzleHttp\\Promise\\": "src/"
+                },
+                "files": [
+                    "src/functions_include.php"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Michael Dowling",
+                    "email": "mtdowling@gmail.com",
+                    "homepage": "https://github.com/mtdowling"
+                }
+            ],
+            "description": "Guzzle promises library",
+            "keywords": [
+                "promise"
+            ],
+            "time": "2016-12-20T10:07:11+00:00"
+        },
+        {
+            "name": "guzzlehttp/psr7",
+            "version": "1.4.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/guzzle/psr7.git",
+                "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
+                "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.4.0",
+                "psr/http-message": "~1.0"
+            },
+            "provide": {
+                "psr/http-message-implementation": "1.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "~4.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.4-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "GuzzleHttp\\Psr7\\": "src/"
+                },
+                "files": [
+                    "src/functions_include.php"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Michael Dowling",
+                    "email": "mtdowling@gmail.com",
+                    "homepage": "https://github.com/mtdowling"
+                },
+                {
+                    "name": "Tobias Schultze",
+                    "homepage": "https://github.com/Tobion"
+                }
+            ],
+            "description": "PSR-7 message implementation that also provides common utility methods",
+            "keywords": [
+                "http",
+                "message",
+                "request",
+                "response",
+                "stream",
+                "uri",
+                "url"
+            ],
+            "time": "2017-03-20T17:10:46+00:00"
+        },
+        {
+            "name": "intervention/image",
+            "version": "2.4.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/Intervention/image.git",
+                "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/Intervention/image/zipball/e82d274f786e3d4b866a59b173f42e716f0783eb",
+                "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb",
+                "shasum": ""
+            },
+            "require": {
+                "ext-fileinfo": "*",
+                "guzzlehttp/psr7": "~1.1",
+                "php": ">=5.4.0"
+            },
+            "require-dev": {
+                "mockery/mockery": "~0.9.2",
+                "phpunit/phpunit": "^4.8 || ^5.7"
+            },
+            "suggest": {
+                "ext-gd": "to use GD library based image processing.",
+                "ext-imagick": "to use Imagick based image processing.",
+                "intervention/imagecache": "Caching extension for the Intervention Image library"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.4-dev"
+                },
+                "laravel": {
+                    "providers": [
+                        "Intervention\\Image\\ImageServiceProvider"
+                    ],
+                    "aliases": {
+                        "Image": "Intervention\\Image\\Facades\\Image"
+                    }
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Intervention\\Image\\": "src/Intervention/Image"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Oliver Vogel",
+                    "email": "oliver@olivervogel.com",
+                    "homepage": "http://olivervogel.com/"
+                }
+            ],
+            "description": "Image handling and manipulation library with support for Laravel integration",
+            "homepage": "http://image.intervention.io/",
+            "keywords": [
+                "gd",
+                "image",
+                "imagick",
+                "laravel",
+                "thumbnail",
+                "watermark"
+            ],
+            "time": "2018-05-29T14:19:03+00:00"
+        },
+        {
+            "name": "jakub-onderka/php-console-color",
+            "version": "v0.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
+                "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
+                "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.4.0"
+            },
+            "require-dev": {
+                "jakub-onderka/php-code-style": "1.0",
+                "jakub-onderka/php-parallel-lint": "1.0",
+                "jakub-onderka/php-var-dump-check": "0.*",
+                "phpunit/phpunit": "~4.3",
+                "squizlabs/php_codesniffer": "1.*"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "JakubOnderka\\PhpConsoleColor\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-2-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Jakub Onderka",
+                    "email": "jakub.onderka@gmail.com"
+                }
+            ],
+            "time": "2018-09-29T17:23:10+00:00"
+        },
+        {
+            "name": "jakub-onderka/php-console-highlighter",
+            "version": "v0.4",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
+                "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
+                "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
+                "shasum": ""
+            },
+            "require": {
+                "ext-tokenizer": "*",
+                "jakub-onderka/php-console-color": "~0.2",
+                "php": ">=5.4.0"
+            },
+            "require-dev": {
+                "jakub-onderka/php-code-style": "~1.0",
+                "jakub-onderka/php-parallel-lint": "~1.0",
+                "jakub-onderka/php-var-dump-check": "~0.1",
+                "phpunit/phpunit": "~4.0",
+                "squizlabs/php_codesniffer": "~1.5"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Jakub Onderka",
+                    "email": "acci@acci.cz",
+                    "homepage": "http://www.acci.cz/"
+                }
+            ],
+            "description": "Highlight PHP code in terminal",
+            "time": "2018-09-29T18:48:56+00:00"
+        },
+        {
+            "name": "jeremeamia/SuperClosure",
+            "version": "2.4.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/jeremeamia/super_closure.git",
+                "reference": "5707d5821b30b9a07acfb4d76949784aaa0e9ce9"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/jeremeamia/super_closure/zipball/5707d5821b30b9a07acfb4d76949784aaa0e9ce9",
+                "reference": "5707d5821b30b9a07acfb4d76949784aaa0e9ce9",
+                "shasum": ""
+            },
+            "require": {
+                "nikic/php-parser": "^1.2|^2.0|^3.0|^4.0",
+                "php": ">=5.4",
+                "symfony/polyfill-php56": "^1.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^4.0|^5.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.4-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "SuperClosure\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Jeremy Lindblom",
+                    "email": "jeremeamia@gmail.com",
+                    "homepage": "https://github.com/jeremeamia",
+                    "role": "Developer"
+                }
+            ],
+            "description": "Serialize Closure objects, including their context and binding",
+            "homepage": "https://github.com/jeremeamia/super_closure",
+            "keywords": [
+                "closure",
+                "function",
+                "lambda",
+                "parser",
+                "serializable",
+                "serialize",
+                "tokenizer"
+            ],
+            "time": "2018-03-21T22:21:57+00:00"
+        },
+        {
+            "name": "johnlui/aliyun-oss",
+            "version": "v2.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/johnlui/AliyunOSS.git",
+                "reference": "4b54db9c06c86d69b9bab0c7443cf7d0abe2794a"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/johnlui/AliyunOSS/zipball/4b54db9c06c86d69b9bab0c7443cf7d0abe2794a",
+                "reference": "4b54db9c06c86d69b9bab0c7443cf7d0abe2794a",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.4.0"
+            },
+            "type": "library",
+            "autoload": {
+                "files": [
+                    "src/AliyunOSS.php"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "John Lui",
+                    "email": "wenhanlv@gmail.com"
+                }
+            ],
+            "description": "阿里云 OSS 官方 SDK 的 Composer 封装,支持任何 PHP 项目,包括 Laravel、Symfony、TinyLara 等等。",
+            "homepage": "https://github.com/johnlui/AliyunOSS",
+            "keywords": [
+                "AliyunOSS",
+                "aliyun",
+                "oss"
+            ],
+            "time": "2017-03-15T10:21:40+00:00"
+        },
+        {
+            "name": "kosinix/grafika",
+            "version": "dev-master",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/kosinix/grafika.git",
+                "reference": "211f61fc334b8b36616b23e8af7c5727971d96ee"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/kosinix/grafika/zipball/211f61fc334b8b36616b23e8af7c5727971d96ee",
+                "reference": "211f61fc334b8b36616b23e8af7c5727971d96ee",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Grafika\\": "src/Grafika"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT",
+                "GPL-2.0+"
+            ],
+            "authors": [
+                {
+                    "name": "Nico Amarilla",
+                    "homepage": "https://www.kosinix.com"
+                }
+            ],
+            "description": "An image manipulation library for PHP.",
+            "homepage": "http://kosinix.github.io/grafika",
+            "keywords": [
+                "grafika"
+            ],
+            "time": "2017-06-20T03:13:49+00:00"
+        },
+        {
+            "name": "laravel/framework",
+            "version": "v5.5.44",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/laravel/framework.git",
+                "reference": "00615aa27eb98f0ee6fb9f2160c6c60ae04abd1b"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/laravel/framework/zipball/00615aa27eb98f0ee6fb9f2160c6c60ae04abd1b",
+                "reference": "00615aa27eb98f0ee6fb9f2160c6c60ae04abd1b",
+                "shasum": ""
+            },
+            "require": {
+                "doctrine/inflector": "~1.1",
+                "erusev/parsedown": "~1.7",
+                "ext-mbstring": "*",
+                "ext-openssl": "*",
+                "league/flysystem": "^1.0.8",
+                "monolog/monolog": "~1.12",
+                "mtdowling/cron-expression": "~1.0",
+                "nesbot/carbon": "^1.24.1",
+                "php": ">=7.0",
+                "psr/container": "~1.0",
+                "psr/simple-cache": "^1.0",
+                "ramsey/uuid": "~3.0",
+                "swiftmailer/swiftmailer": "~6.0",
+                "symfony/console": "~3.3",
+                "symfony/debug": "~3.3",
+                "symfony/finder": "~3.3",
+                "symfony/http-foundation": "~3.3",
+                "symfony/http-kernel": "~3.3",
+                "symfony/process": "~3.3",
+                "symfony/routing": "~3.3",
+                "symfony/var-dumper": "~3.3",
+                "tijsverkoyen/css-to-inline-styles": "~2.2",
+                "vlucas/phpdotenv": "~2.2"
+            },
+            "replace": {
+                "illuminate/auth": "self.version",
+                "illuminate/broadcasting": "self.version",
+                "illuminate/bus": "self.version",
+                "illuminate/cache": "self.version",
+                "illuminate/config": "self.version",
+                "illuminate/console": "self.version",
+                "illuminate/container": "self.version",
+                "illuminate/contracts": "self.version",
+                "illuminate/cookie": "self.version",
+                "illuminate/database": "self.version",
+                "illuminate/encryption": "self.version",
+                "illuminate/events": "self.version",
+                "illuminate/filesystem": "self.version",
+                "illuminate/hashing": "self.version",
+                "illuminate/http": "self.version",
+                "illuminate/log": "self.version",
+                "illuminate/mail": "self.version",
+                "illuminate/notifications": "self.version",
+                "illuminate/pagination": "self.version",
+                "illuminate/pipeline": "self.version",
+                "illuminate/queue": "self.version",
+                "illuminate/redis": "self.version",
+                "illuminate/routing": "self.version",
+                "illuminate/session": "self.version",
+                "illuminate/support": "self.version",
+                "illuminate/translation": "self.version",
+                "illuminate/validation": "self.version",
+                "illuminate/view": "self.version",
+                "tightenco/collect": "<5.5.33"
+            },
+            "require-dev": {
+                "aws/aws-sdk-php": "~3.0",
+                "doctrine/dbal": "~2.5",
+                "filp/whoops": "^2.1.4",
+                "mockery/mockery": "~1.0",
+                "orchestra/testbench-core": "3.5.*",
+                "pda/pheanstalk": "~3.0",
+                "phpunit/phpunit": "~6.0",
+                "predis/predis": "^1.1.1",
+                "symfony/css-selector": "~3.3",
+                "symfony/dom-crawler": "~3.3"
+            },
+            "suggest": {
+                "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
+                "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.5).",
+                "ext-pcntl": "Required to use all features of the queue worker.",
+                "ext-posix": "Required to use all features of the queue worker.",
+                "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
+                "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).",
+                "laravel/tinker": "Required to use the tinker console command (~1.0).",
+                "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
+                "league/flysystem-cached-adapter": "Required to use Flysystem caching (~1.0).",
+                "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
+                "nexmo/client": "Required to use the Nexmo transport (~1.0).",
+                "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
+                "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
+                "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~3.0).",
+                "symfony/css-selector": "Required to use some of the crawler integration testing tools (~3.3).",
+                "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~3.3).",
+                "symfony/psr-http-message-bridge": "Required to psr7 bridging features (~1.0)."
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "5.5-dev"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "src/Illuminate/Foundation/helpers.php",
+                    "src/Illuminate/Support/helpers.php"
+                ],
+                "psr-4": {
+                    "Illuminate\\": "src/Illuminate/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Taylor Otwell",
+                    "email": "taylor@laravel.com"
+                }
+            ],
+            "description": "The Laravel Framework.",
+            "homepage": "https://laravel.com",
+            "keywords": [
+                "framework",
+                "laravel"
+            ],
+            "time": "2018-10-04T14:51:24+00:00"
+        },
+        {
+            "name": "laravel/passport",
+            "version": "v4.0.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/laravel/passport.git",
+                "reference": "0542f1f82edfbf857d0197c34a3d41f549aff30a"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/laravel/passport/zipball/0542f1f82edfbf857d0197c34a3d41f549aff30a",
+                "reference": "0542f1f82edfbf857d0197c34a3d41f549aff30a",
+                "shasum": ""
+            },
+            "require": {
+                "firebase/php-jwt": "~3.0|~4.0|~5.0",
+                "guzzlehttp/guzzle": "~6.0",
+                "illuminate/auth": "~5.4",
+                "illuminate/console": "~5.4",
+                "illuminate/container": "~5.4",
+                "illuminate/contracts": "~5.4",
+                "illuminate/database": "~5.4",
+                "illuminate/encryption": "~5.4",
+                "illuminate/http": "~5.4",
+                "illuminate/support": "~5.4",
+                "league/oauth2-server": "^6.0",
+                "php": ">=5.6.4",
+                "phpseclib/phpseclib": "^2.0",
+                "symfony/psr-http-message-bridge": "~1.0",
+                "zendframework/zend-diactoros": "~1.0"
+            },
+            "require-dev": {
+                "mockery/mockery": "~0.9",
+                "phpunit/phpunit": "~5.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.0-dev"
+                },
+                "laravel": {
+                    "providers": [
+                        "Laravel\\Passport\\PassportServiceProvider"
+                    ]
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Laravel\\Passport\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Taylor Otwell",
+                    "email": "taylor@laravel.com"
+                }
+            ],
+            "description": "Laravel Passport provides OAuth2 server support to Laravel.",
+            "keywords": [
+                "laravel",
+                "oauth",
+                "passport"
+            ],
+            "time": "2017-09-24T14:21:39+00:00"
+        },
+        {
+            "name": "laravel/tinker",
+            "version": "v1.0.8",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/laravel/tinker.git",
+                "reference": "cafbf598a90acde68985660e79b2b03c5609a405"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/laravel/tinker/zipball/cafbf598a90acde68985660e79b2b03c5609a405",
+                "reference": "cafbf598a90acde68985660e79b2b03c5609a405",
+                "shasum": ""
+            },
+            "require": {
+                "illuminate/console": "~5.1",
+                "illuminate/contracts": "~5.1",
+                "illuminate/support": "~5.1",
+                "php": ">=5.5.9",
+                "psy/psysh": "0.7.*|0.8.*|0.9.*",
+                "symfony/var-dumper": "~3.0|~4.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "~4.0|~5.0"
+            },
+            "suggest": {
+                "illuminate/database": "The Illuminate Database package (~5.1)."
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0-dev"
+                },
+                "laravel": {
+                    "providers": [
+                        "Laravel\\Tinker\\TinkerServiceProvider"
+                    ]
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Laravel\\Tinker\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Taylor Otwell",
+                    "email": "taylor@laravel.com"
+                }
+            ],
+            "description": "Powerful REPL for the Laravel framework.",
+            "keywords": [
+                "REPL",
+                "Tinker",
+                "laravel",
+                "psysh"
+            ],
+            "time": "2018-10-12T19:39:35+00:00"
+        },
+        {
+            "name": "lcobucci/jwt",
+            "version": "3.2.4",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/lcobucci/jwt.git",
+                "reference": "c9704b751315d21735dc98d78d4f37bd73596da7"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c9704b751315d21735dc98d78d4f37bd73596da7",
+                "reference": "c9704b751315d21735dc98d78d4f37bd73596da7",
+                "shasum": ""
+            },
+            "require": {
+                "ext-openssl": "*",
+                "php": ">=5.5"
+            },
+            "require-dev": {
+                "mdanter/ecc": "~0.3.1",
+                "mikey179/vfsstream": "~1.5",
+                "phpmd/phpmd": "~2.2",
+                "phpunit/php-invoker": "~1.1",
+                "phpunit/phpunit": "~4.5",
+                "squizlabs/php_codesniffer": "~2.3"
+            },
+            "suggest": {
+                "mdanter/ecc": "Required to use Elliptic Curves based algorithms."
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.1-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Lcobucci\\JWT\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Luís Otávio Cobucci Oblonczyk",
+                    "email": "lcobucci@gmail.com",
+                    "role": "developer"
+                }
+            ],
+            "description": "A simple library to work with JSON Web Token and JSON Web Signature",
+            "keywords": [
+                "JWS",
+                "jwt"
+            ],
+            "time": "2018-08-03T11:23:50+00:00"
+        },
+        {
+            "name": "league/event",
+            "version": "2.1.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/thephpleague/event.git",
+                "reference": "e4bfc88dbcb60c8d8a2939a71f9813e141bbe4cd"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/thephpleague/event/zipball/e4bfc88dbcb60c8d8a2939a71f9813e141bbe4cd",
+                "reference": "e4bfc88dbcb60c8d8a2939a71f9813e141bbe4cd",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.4.0"
+            },
+            "require-dev": {
+                "henrikbjorn/phpspec-code-coverage": "~1.0.1",
+                "phpspec/phpspec": "~2.0.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.2-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "League\\Event\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Frank de Jonge",
+                    "email": "info@frenky.net"
+                }
+            ],
+            "description": "Event package",
+            "keywords": [
+                "emitter",
+                "event",
+                "listener"
+            ],
+            "time": "2015-05-21T12:24:47+00:00"
+        },
+        {
+            "name": "league/flysystem",
+            "version": "1.0.48",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/thephpleague/flysystem.git",
+                "reference": "a6ded5b2f6055e2db97b4b859fdfca2b952b78aa"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a6ded5b2f6055e2db97b4b859fdfca2b952b78aa",
+                "reference": "a6ded5b2f6055e2db97b4b859fdfca2b952b78aa",
+                "shasum": ""
+            },
+            "require": {
+                "ext-fileinfo": "*",
+                "php": ">=5.5.9"
+            },
+            "conflict": {
+                "league/flysystem-sftp": "<1.0.6"
+            },
+            "require-dev": {
+                "phpspec/phpspec": "^3.4",
+                "phpunit/phpunit": "^5.7.10"
+            },
+            "suggest": {
+                "ext-fileinfo": "Required for MimeType",
+                "ext-ftp": "Allows you to use FTP server storage",
+                "ext-openssl": "Allows you to use FTPS server storage",
+                "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
+                "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
+                "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
+                "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
+                "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
+                "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
+                "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
+                "league/flysystem-webdav": "Allows you to use WebDAV storage",
+                "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
+                "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
+                "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.1-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "League\\Flysystem\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Frank de Jonge",
+                    "email": "info@frenky.net"
+                }
+            ],
+            "description": "Filesystem abstraction: Many filesystems, one API.",
+            "keywords": [
+                "Cloud Files",
+                "WebDAV",
+                "abstraction",
+                "aws",
+                "cloud",
+                "copy.com",
+                "dropbox",
+                "file systems",
+                "files",
+                "filesystem",
+                "filesystems",
+                "ftp",
+                "rackspace",
+                "remote",
+                "s3",
+                "sftp",
+                "storage"
+            ],
+            "time": "2018-10-15T13:53:10+00:00"
+        },
+        {
+            "name": "league/fractal",
+            "version": "0.17.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/thephpleague/fractal.git",
+                "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/thephpleague/fractal/zipball/a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
+                "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.4"
+            },
+            "require-dev": {
+                "doctrine/orm": "^2.5",
+                "illuminate/contracts": "~5.0",
+                "mockery/mockery": "~0.9",
+                "pagerfanta/pagerfanta": "~1.0.0",
+                "phpunit/phpunit": "~4.0",
+                "squizlabs/php_codesniffer": "~1.5",
+                "zendframework/zend-paginator": "~2.3"
+            },
+            "suggest": {
+                "illuminate/pagination": "The Illuminate Pagination component.",
+                "pagerfanta/pagerfanta": "Pagerfanta Paginator",
+                "zendframework/zend-paginator": "Zend Framework Paginator"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "0.13-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "League\\Fractal\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Phil Sturgeon",
+                    "email": "me@philsturgeon.uk",
+                    "homepage": "http://philsturgeon.uk/",
+                    "role": "Developer"
+                }
+            ],
+            "description": "Handle the output of complex data structures ready for API output.",
+            "homepage": "http://fractal.thephpleague.com/",
+            "keywords": [
+                "api",
+                "json",
+                "league",
+                "rest"
+            ],
+            "time": "2017-06-12T11:04:56+00:00"
+        },
+        {
+            "name": "league/oauth2-server",
+            "version": "6.0.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/thephpleague/oauth2-server.git",
+                "reference": "925776958fc3f5278e74363663c20147af32b668"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/925776958fc3f5278e74363663c20147af32b668",
+                "reference": "925776958fc3f5278e74363663c20147af32b668",
+                "shasum": ""
+            },
+            "require": {
+                "defuse/php-encryption": "^2.1",
+                "ext-openssl": "*",
+                "lcobucci/jwt": "^3.1",
+                "league/event": "^2.1",
+                "paragonie/random_compat": "^2.0",
+                "php": ">=5.6.0",
+                "psr/http-message": "^1.0"
+            },
+            "replace": {
+                "league/oauth2server": "*",
+                "lncd/oauth2": "*"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^4.8 || ^5.0",
+                "zendframework/zend-diactoros": "^1.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "League\\OAuth2\\Server\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Alex Bilbie",
+                    "email": "hello@alexbilbie.com",
+                    "homepage": "http://www.alexbilbie.com",
+                    "role": "Developer"
+                }
+            ],
+            "description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.",
+            "homepage": "https://oauth2.thephpleague.com/",
+            "keywords": [
+                "Authentication",
+                "api",
+                "auth",
+                "authorisation",
+                "authorization",
+                "oauth",
+                "oauth 2",
+                "oauth 2.0",
+                "oauth2",
+                "protect",
+                "resource",
+                "secure",
+                "server"
+            ],
+            "time": "2017-08-03T15:09:23+00:00"
+        },
+        {
+            "name": "maatwebsite/excel",
+            "version": "2.1.30",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
+                "reference": "f5540c4ba3ac50cebd98b09ca42e61f926ef299f"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/f5540c4ba3ac50cebd98b09ca42e61f926ef299f",
+                "reference": "f5540c4ba3ac50cebd98b09ca42e61f926ef299f",
+                "shasum": ""
+            },
+            "require": {
+                "illuminate/cache": "^5.0",
+                "illuminate/config": "^5.0",
+                "illuminate/filesystem": "^5.0",
+                "illuminate/support": "^5.0",
+                "jeremeamia/superclosure": "^2.3",
+                "nesbot/carbon": "~1.0",
+                "php": ">=5.5",
+                "phpoffice/phpexcel": "^1.8.1",
+                "tijsverkoyen/css-to-inline-styles": "~2.0"
+            },
+            "require-dev": {
+                "mockery/mockery": "~1.0",
+                "orchestra/testbench": "3.1.*|3.2.*|3.3.*|3.4.*|3.5.*|3.6.*",
+                "phpseclib/phpseclib": "~1.0",
+                "phpunit/phpunit": "~4.0"
+            },
+            "suggest": {
+                "illuminate/http": "^5.0",
+                "illuminate/queue": "^5.0",
+                "illuminate/routing": "^5.0",
+                "illuminate/view": "^5.0"
+            },
+            "type": "library",
+            "extra": {
+                "laravel": {
+                    "providers": [
+                        "Maatwebsite\\Excel\\ExcelServiceProvider"
+                    ],
+                    "aliases": {
+                        "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
+                    }
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/Maatwebsite/Excel"
+                ],
+                "psr-0": {
+                    "Maatwebsite\\Excel\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Maatwebsite.nl",
+                    "email": "patrick@maatwebsite.nl"
+                }
+            ],
+            "description": "Supercharged Excel exports in Laravel",
+            "keywords": [
+                "PHPExcel",
+                "batch",
+                "csv",
+                "excel",
+                "export",
+                "import",
+                "laravel"
+            ],
+            "time": "2018-09-04T19:00:09+00:00"
+        },
+        {
+            "name": "monolog/monolog",
+            "version": "1.23.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/Seldaek/monolog.git",
+                "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
+                "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.0",
+                "psr/log": "~1.0"
+            },
+            "provide": {
+                "psr/log-implementation": "1.0.0"
+            },
+            "require-dev": {
+                "aws/aws-sdk-php": "^2.4.9 || ^3.0",
+                "doctrine/couchdb": "~1.0@dev",
+                "graylog2/gelf-php": "~1.0",
+                "jakub-onderka/php-parallel-lint": "0.9",
+                "php-amqplib/php-amqplib": "~2.4",
+                "php-console/php-console": "^3.1.3",
+                "phpunit/phpunit": "~4.5",
+                "phpunit/phpunit-mock-objects": "2.3.0",
+                "ruflin/elastica": ">=0.90 <3.0",
+                "sentry/sentry": "^0.13",
+                "swiftmailer/swiftmailer": "^5.3|^6.0"
+            },
+            "suggest": {
+                "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
+                "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
+                "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
+                "ext-mongo": "Allow sending log messages to a MongoDB server",
+                "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
+                "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
+                "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
+                "php-console/php-console": "Allow sending log messages to Google Chrome",
+                "rollbar/rollbar": "Allow sending log messages to Rollbar",
+                "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
+                "sentry/sentry": "Allow sending log messages to a Sentry server"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Monolog\\": "src/Monolog"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Jordi Boggiano",
+                    "email": "j.boggiano@seld.be",
+                    "homepage": "http://seld.be"
+                }
+            ],
+            "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
+            "homepage": "http://github.com/Seldaek/monolog",
+            "keywords": [
+                "log",
+                "logging",
+                "psr-3"
+            ],
+            "time": "2017-06-19T01:22:40+00:00"
+        },
+        {
+            "name": "mtdowling/cron-expression",
+            "version": "v1.2.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/mtdowling/cron-expression.git",
+                "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad",
+                "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.2"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "~4.0|~5.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Cron\\": "src/Cron/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Michael Dowling",
+                    "email": "mtdowling@gmail.com",
+                    "homepage": "https://github.com/mtdowling"
+                }
+            ],
+            "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
+            "keywords": [
+                "cron",
+                "schedule"
+            ],
+            "time": "2017-01-23T04:29:33+00:00"
+        },
+        {
+            "name": "nesbot/carbon",
+            "version": "1.34.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/briannesbitt/Carbon.git",
+                "reference": "1dbd3cb01c5645f3e7deda7aa46ef780d95fcc33"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/1dbd3cb01c5645f3e7deda7aa46ef780d95fcc33",
+                "reference": "1dbd3cb01c5645f3e7deda7aa46ef780d95fcc33",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.9",
+                "symfony/translation": "~2.6 || ~3.0 || ~4.0"
+            },
+            "require-dev": {
+                "friendsofphp/php-cs-fixer": "~2",
+                "phpunit/phpunit": "^4.8.35 || ^5.7"
+            },
+            "type": "library",
+            "extra": {
+                "laravel": {
+                    "providers": [
+                        "Carbon\\Laravel\\ServiceProvider"
+                    ]
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Brian Nesbitt",
+                    "email": "brian@nesbot.com",
+                    "homepage": "http://nesbot.com"
+                }
+            ],
+            "description": "A simple API extension for DateTime.",
+            "homepage": "http://carbon.nesbot.com",
+            "keywords": [
+                "date",
+                "datetime",
+                "time"
+            ],
+            "time": "2018-09-20T19:36:25+00:00"
+        },
+        {
+            "name": "nikic/php-parser",
+            "version": "v4.1.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/nikic/PHP-Parser.git",
+                "reference": "d0230c5c77a7e3cfa69446febf340978540958c0"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/d0230c5c77a7e3cfa69446febf340978540958c0",
+                "reference": "d0230c5c77a7e3cfa69446febf340978540958c0",
+                "shasum": ""
+            },
+            "require": {
+                "ext-tokenizer": "*",
+                "php": ">=7.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^6.5 || ^7.0"
+            },
+            "bin": [
+                "bin/php-parse"
+            ],
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.1-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "PhpParser\\": "lib/PhpParser"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Nikita Popov"
+                }
+            ],
+            "description": "A PHP parser written in PHP",
+            "keywords": [
+                "parser",
+                "php"
+            ],
+            "time": "2018-10-10T09:24:14+00:00"
+        },
+        {
+            "name": "overtrue/laravel-wechat",
+            "version": "4.0.22",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/overtrue/laravel-wechat.git",
+                "reference": "1d985af7c2d3b27ae5046dbdd3678172fd028490"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/1d985af7c2d3b27ae5046dbdd3678172fd028490",
+                "reference": "1d985af7c2d3b27ae5046dbdd3678172fd028490",
+                "shasum": ""
+            },
+            "require": {
+                "illuminate/container": "^5.1",
+                "overtrue/wechat": "^4.0"
+            },
+            "type": "library",
+            "extra": {
+                "laravel": {
+                    "providers": [
+                        "Overtrue\\LaravelWeChat\\ServiceProvider"
+                    ],
+                    "aliases": {
+                        "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
+                    }
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Overtrue\\LaravelWeChat\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "overtrue",
+                    "email": "anzhengchao@gmail.com"
+                }
+            ],
+            "description": "微信 SDK for Laravel",
+            "keywords": [
+                "laravel",
+                "sdk",
+                "wechat",
+                "weixin"
+            ],
+            "time": "2018-05-23T14:03:58+00:00"
+        },
+        {
+            "name": "overtrue/socialite",
+            "version": "2.0.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/overtrue/socialite.git",
+                "reference": "20bc0ac598aa41365c209bbe4cb5c0cf314d46b3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/overtrue/socialite/zipball/20bc0ac598aa41365c209bbe4cb5c0cf314d46b3",
+                "reference": "20bc0ac598aa41365c209bbe4cb5c0cf314d46b3",
+                "shasum": ""
+            },
+            "require": {
+                "guzzlehttp/guzzle": "~5.0|~6.0",
+                "php": ">=7.0",
+                "symfony/http-foundation": "^2.7|^3.0|^4.0"
+            },
+            "require-dev": {
+                "mockery/mockery": "~0.9",
+                "phpunit/phpunit": "~4.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Overtrue\\Socialite\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "overtrue",
+                    "email": "anzhengchao@gmail.com"
+                }
+            ],
+            "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
+            "keywords": [
+                "login",
+                "oauth",
+                "qq",
+                "social",
+                "wechat",
+                "weibo"
+            ],
+            "time": "2018-03-28T02:22:49+00:00"
+        },
+        {
+            "name": "overtrue/wechat",
+            "version": "4.1.9",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/overtrue/wechat.git",
+                "reference": "356caf17f357121ebe81b75575a339dcd3005177"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/overtrue/wechat/zipball/356caf17f357121ebe81b75575a339dcd3005177",
+                "reference": "356caf17f357121ebe81b75575a339dcd3005177",
+                "shasum": ""
+            },
+            "require": {
+                "easywechat-composer/easywechat-composer": "^1.1",
+                "ext-fileinfo": "*",
+                "ext-openssl": "*",
+                "ext-simplexml": "*",
+                "guzzlehttp/guzzle": "^6.2",
+                "monolog/monolog": "^1.22",
+                "overtrue/socialite": "~2.0",
+                "php": ">=7.0",
+                "pimple/pimple": "^3.0",
+                "symfony/cache": "^3.3|^4.0",
+                "symfony/http-foundation": "^2.7|^3.0|^4.0",
+                "symfony/psr-http-message-bridge": "^0.3|^1.0"
+            },
+            "require-dev": {
+                "mikey179/vfsstream": "^1.6",
+                "mockery/mockery": "^1.0",
+                "overtrue/phplint": "dev-master",
+                "phpunit/phpunit": "~6.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "EasyWeChat\\": "src/"
+                },
+                "files": [
+                    "src/Kernel/Support/Helpers.php",
+                    "src/Kernel/Helpers.php"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "overtrue",
+                    "email": "anzhengchao@gmail.com"
+                }
+            ],
+            "description": "微信SDK",
+            "keywords": [
+                "sdk",
+                "wechat",
+                "weixin",
+                "weixin-sdk"
+            ],
+            "time": "2018-10-20T12:41:31+00:00"
+        },
+        {
+            "name": "paragonie/random_compat",
+            "version": "v2.0.17",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/paragonie/random_compat.git",
+                "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/paragonie/random_compat/zipball/29af24f25bab834fcbb38ad2a69fa93b867e070d",
+                "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.2.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "4.*|5.*"
+            },
+            "suggest": {
+                "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
+            },
+            "type": "library",
+            "autoload": {
+                "files": [
+                    "lib/random.php"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Paragon Initiative Enterprises",
+                    "email": "security@paragonie.com",
+                    "homepage": "https://paragonie.com"
+                }
+            ],
+            "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
+            "keywords": [
+                "csprng",
+                "polyfill",
+                "pseudorandom",
+                "random"
+            ],
+            "time": "2018-07-04T16:31:37+00:00"
+        },
+        {
+            "name": "phpdocumentor/reflection-common",
+            "version": "1.0.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
+                "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
+                "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.5"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^4.6"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "phpDocumentor\\Reflection\\": [
+                        "src"
+                    ]
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Jaap van Otterdijk",
+                    "email": "opensource@ijaap.nl"
+                }
+            ],
+            "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
+            "homepage": "http://www.phpdoc.org",
+            "keywords": [
+                "FQSEN",
+                "phpDocumentor",
+                "phpdoc",
+                "reflection",
+                "static analysis"
+            ],
+            "time": "2017-09-11T18:02:19+00:00"
+        },
+        {
+            "name": "phpdocumentor/reflection-docblock",
+            "version": "3.3.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
+                "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/bf329f6c1aadea3299f08ee804682b7c45b326a2",
+                "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.6 || ^7.0",
+                "phpdocumentor/reflection-common": "^1.0.0",
+                "phpdocumentor/type-resolver": "^0.4.0",
+                "webmozart/assert": "^1.0"
+            },
+            "require-dev": {
+                "mockery/mockery": "^0.9.4",
+                "phpunit/phpunit": "^4.4"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "phpDocumentor\\Reflection\\": [
+                        "src/"
+                    ]
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Mike van Riel",
+                    "email": "me@mikevanriel.com"
+                }
+            ],
+            "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
+            "time": "2017-11-10T14:09:06+00:00"
+        },
+        {
+            "name": "phpdocumentor/type-resolver",
+            "version": "0.4.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/phpDocumentor/TypeResolver.git",
+                "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
+                "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.5 || ^7.0",
+                "phpdocumentor/reflection-common": "^1.0"
+            },
+            "require-dev": {
+                "mockery/mockery": "^0.9.4",
+                "phpunit/phpunit": "^5.2||^4.8.24"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "phpDocumentor\\Reflection\\": [
+                        "src/"
+                    ]
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Mike van Riel",
+                    "email": "me@mikevanriel.com"
+                }
+            ],
+            "time": "2017-07-14T14:27:02+00:00"
+        },
+        {
+            "name": "phpoffice/phpexcel",
+            "version": "1.8.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/PHPOffice/PHPExcel.git",
+                "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/372c7cbb695a6f6f1e62649381aeaa37e7e70b32",
+                "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32",
+                "shasum": ""
+            },
+            "require": {
+                "ext-xml": "*",
+                "ext-xmlwriter": "*",
+                "php": ">=5.2.0"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-0": {
+                    "PHPExcel": "Classes/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "LGPL"
+            ],
+            "authors": [
+                {
+                    "name": "Maarten Balliauw",
+                    "homepage": "http://blog.maartenballiauw.be"
+                },
+                {
+                    "name": "Mark Baker"
+                },
+                {
+                    "name": "Franck Lefevre",
+                    "homepage": "http://blog.rootslabs.net"
+                },
+                {
+                    "name": "Erik Tilt"
+                }
+            ],
+            "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
+            "homepage": "http://phpexcel.codeplex.com",
+            "keywords": [
+                "OpenXML",
+                "excel",
+                "php",
+                "spreadsheet",
+                "xls",
+                "xlsx"
+            ],
+            "abandoned": "phpoffice/phpspreadsheet",
+            "time": "2015-05-01T07:00:55+00:00"
+        },
+        {
+            "name": "phpseclib/phpseclib",
+            "version": "2.0.11",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/phpseclib/phpseclib.git",
+                "reference": "7053f06f91b3de78e143d430e55a8f7889efc08b"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/7053f06f91b3de78e143d430e55a8f7889efc08b",
+                "reference": "7053f06f91b3de78e143d430e55a8f7889efc08b",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.3"
+            },
+            "require-dev": {
+                "phing/phing": "~2.7",
+                "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
+                "sami/sami": "~2.0",
+                "squizlabs/php_codesniffer": "~2.0"
+            },
+            "suggest": {
+                "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
+                "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
+                "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
+                "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
+            },
+            "type": "library",
+            "autoload": {
+                "files": [
+                    "phpseclib/bootstrap.php"
+                ],
+                "psr-4": {
+                    "phpseclib\\": "phpseclib/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Jim Wigginton",
+                    "email": "terrafrost@php.net",
+                    "role": "Lead Developer"
+                },
+                {
+                    "name": "Patrick Monnerat",
+                    "email": "pm@datasphere.ch",
+                    "role": "Developer"
+                },
+                {
+                    "name": "Andreas Fischer",
+                    "email": "bantu@phpbb.com",
+                    "role": "Developer"
+                },
+                {
+                    "name": "Hans-Jürgen Petrich",
+                    "email": "petrich@tronic-media.com",
+                    "role": "Developer"
+                },
+                {
+                    "name": "Graham Campbell",
+                    "email": "graham@alt-three.com",
+                    "role": "Developer"
+                }
+            ],
+            "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
+            "homepage": "http://phpseclib.sourceforge.net",
+            "keywords": [
+                "BigInteger",
+                "aes",
+                "asn.1",
+                "asn1",
+                "blowfish",
+                "crypto",
+                "cryptography",
+                "encryption",
+                "rsa",
+                "security",
+                "sftp",
+                "signature",
+                "signing",
+                "ssh",
+                "twofish",
+                "x.509",
+                "x509"
+            ],
+            "time": "2018-04-15T16:55:05+00:00"
+        },
+        {
+            "name": "pimple/pimple",
+            "version": "v3.2.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/silexphp/Pimple.git",
+                "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32",
+                "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.0",
+                "psr/container": "^1.0"
+            },
+            "require-dev": {
+                "symfony/phpunit-bridge": "^3.2"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.2.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-0": {
+                    "Pimple": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                }
+            ],
+            "description": "Pimple, a simple Dependency Injection Container",
+            "homepage": "http://pimple.sensiolabs.org",
+            "keywords": [
+                "container",
+                "dependency injection"
+            ],
+            "time": "2018-01-21T07:42:36+00:00"
+        },
+        {
+            "name": "psr/cache",
+            "version": "1.0.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/php-fig/cache.git",
+                "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
+                "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Psr\\Cache\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "PHP-FIG",
+                    "homepage": "http://www.php-fig.org/"
+                }
+            ],
+            "description": "Common interface for caching libraries",
+            "keywords": [
+                "cache",
+                "psr",
+                "psr-6"
+            ],
+            "time": "2016-08-06T20:24:11+00:00"
+        },
+        {
+            "name": "psr/container",
+            "version": "1.0.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/php-fig/container.git",
+                "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
+                "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Psr\\Container\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "PHP-FIG",
+                    "homepage": "http://www.php-fig.org/"
+                }
+            ],
+            "description": "Common Container Interface (PHP FIG PSR-11)",
+            "homepage": "https://github.com/php-fig/container",
+            "keywords": [
+                "PSR-11",
+                "container",
+                "container-interface",
+                "container-interop",
+                "psr"
+            ],
+            "time": "2017-02-14T16:28:37+00:00"
+        },
+        {
+            "name": "psr/http-message",
+            "version": "1.0.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/php-fig/http-message.git",
+                "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
+                "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Psr\\Http\\Message\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "PHP-FIG",
+                    "homepage": "http://www.php-fig.org/"
+                }
+            ],
+            "description": "Common interface for HTTP messages",
+            "homepage": "https://github.com/php-fig/http-message",
+            "keywords": [
+                "http",
+                "http-message",
+                "psr",
+                "psr-7",
+                "request",
+                "response"
+            ],
+            "time": "2016-08-06T14:39:51+00:00"
+        },
+        {
+            "name": "psr/log",
+            "version": "1.0.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/php-fig/log.git",
+                "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
+                "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Psr\\Log\\": "Psr/Log/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "PHP-FIG",
+                    "homepage": "http://www.php-fig.org/"
+                }
+            ],
+            "description": "Common interface for logging libraries",
+            "homepage": "https://github.com/php-fig/log",
+            "keywords": [
+                "log",
+                "psr",
+                "psr-3"
+            ],
+            "time": "2016-10-10T12:19:37+00:00"
+        },
+        {
+            "name": "psr/simple-cache",
+            "version": "1.0.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/php-fig/simple-cache.git",
+                "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
+                "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Psr\\SimpleCache\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "PHP-FIG",
+                    "homepage": "http://www.php-fig.org/"
+                }
+            ],
+            "description": "Common interfaces for simple caching",
+            "keywords": [
+                "cache",
+                "caching",
+                "psr",
+                "psr-16",
+                "simple-cache"
+            ],
+            "time": "2017-10-23T01:57:42+00:00"
+        },
+        {
+            "name": "psy/psysh",
+            "version": "v0.9.9",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/bobthecow/psysh.git",
+                "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
+                "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
+                "shasum": ""
+            },
+            "require": {
+                "dnoegel/php-xdg-base-dir": "0.1",
+                "ext-json": "*",
+                "ext-tokenizer": "*",
+                "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
+                "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
+                "php": ">=5.4.0",
+                "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
+                "symfony/var-dumper": "~2.7|~3.0|~4.0"
+            },
+            "require-dev": {
+                "bamarni/composer-bin-plugin": "^1.2",
+                "hoa/console": "~2.15|~3.16",
+                "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
+            },
+            "suggest": {
+                "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
+                "ext-pdo-sqlite": "The doc command requires SQLite to work.",
+                "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
+                "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
+                "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
+            },
+            "bin": [
+                "bin/psysh"
+            ],
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-develop": "0.9.x-dev"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "src/functions.php"
+                ],
+                "psr-4": {
+                    "Psy\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Justin Hileman",
+                    "email": "justin@justinhileman.info",
+                    "homepage": "http://justinhileman.com"
+                }
+            ],
+            "description": "An interactive shell for modern PHP.",
+            "homepage": "http://psysh.org",
+            "keywords": [
+                "REPL",
+                "console",
+                "interactive",
+                "shell"
+            ],
+            "time": "2018-10-13T15:16:03+00:00"
+        },
+        {
+            "name": "ramsey/uuid",
+            "version": "3.8.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/ramsey/uuid.git",
+                "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
+                "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
+                "shasum": ""
+            },
+            "require": {
+                "paragonie/random_compat": "^1.0|^2.0|9.99.99",
+                "php": "^5.4 || ^7.0",
+                "symfony/polyfill-ctype": "^1.8"
+            },
+            "replace": {
+                "rhumsaa/uuid": "self.version"
+            },
+            "require-dev": {
+                "codeception/aspect-mock": "^1.0 | ~2.0.0",
+                "doctrine/annotations": "~1.2.0",
+                "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0",
+                "ircmaxell/random-lib": "^1.1",
+                "jakub-onderka/php-parallel-lint": "^0.9.0",
+                "mockery/mockery": "^0.9.9",
+                "moontoast/math": "^1.1",
+                "php-mock/php-mock-phpunit": "^0.3|^1.1",
+                "phpunit/phpunit": "^4.7|^5.0|^6.5",
+                "squizlabs/php_codesniffer": "^2.3"
+            },
+            "suggest": {
+                "ext-ctype": "Provides support for PHP Ctype functions",
+                "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
+                "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
+                "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
+                "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
+                "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
+                "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Ramsey\\Uuid\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Marijn Huizendveld",
+                    "email": "marijn.huizendveld@gmail.com"
+                },
+                {
+                    "name": "Thibaud Fabre",
+                    "email": "thibaud@aztech.io"
+                },
+                {
+                    "name": "Ben Ramsey",
+                    "email": "ben@benramsey.com",
+                    "homepage": "https://benramsey.com"
+                }
+            ],
+            "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
+            "homepage": "https://github.com/ramsey/uuid",
+            "keywords": [
+                "guid",
+                "identifier",
+                "uuid"
+            ],
+            "time": "2018-07-19T23:38:55+00:00"
+        },
+        {
+            "name": "swiftmailer/swiftmailer",
+            "version": "v6.1.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/swiftmailer/swiftmailer.git",
+                "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8ddcb66ac10c392d3beb54829eef8ac1438595f4",
+                "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4",
+                "shasum": ""
+            },
+            "require": {
+                "egulias/email-validator": "~2.0",
+                "php": ">=7.0.0"
+            },
+            "require-dev": {
+                "mockery/mockery": "~0.9.1",
+                "symfony/phpunit-bridge": "~3.3@dev"
+            },
+            "suggest": {
+                "ext-intl": "Needed to support internationalized email addresses",
+                "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "6.1-dev"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "lib/swift_required.php"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Chris Corbyn"
+                },
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                }
+            ],
+            "description": "Swiftmailer, free feature-rich PHP mailer",
+            "homepage": "https://swiftmailer.symfony.com",
+            "keywords": [
+                "email",
+                "mail",
+                "mailer"
+            ],
+            "time": "2018-09-11T07:12:52+00:00"
+        },
+        {
+            "name": "symfony/cache",
+            "version": "v4.1.6",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/cache.git",
+                "reference": "05ce0ddc8bc1ffe592105398fc2c725cb3080a38"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/cache/zipball/05ce0ddc8bc1ffe592105398fc2c725cb3080a38",
+                "reference": "05ce0ddc8bc1ffe592105398fc2c725cb3080a38",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.1.3",
+                "psr/cache": "~1.0",
+                "psr/log": "~1.0",
+                "psr/simple-cache": "^1.0"
+            },
+            "conflict": {
+                "symfony/var-dumper": "<3.4"
+            },
+            "provide": {
+                "psr/cache-implementation": "1.0",
+                "psr/simple-cache-implementation": "1.0"
+            },
+            "require-dev": {
+                "cache/integration-tests": "dev-master",
+                "doctrine/cache": "~1.6",
+                "doctrine/dbal": "~2.4",
+                "predis/predis": "~1.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.1-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\Cache\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "caching",
+                "psr6"
+            ],
+            "time": "2018-09-30T03:38:13+00:00"
+        },
+        {
+            "name": "symfony/console",
+            "version": "v3.4.17",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/console.git",
+                "reference": "3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/console/zipball/3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b",
+                "reference": "3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.5.9|>=7.0.8",
+                "symfony/debug": "~2.8|~3.0|~4.0",
+                "symfony/polyfill-mbstring": "~1.0"
+            },
+            "conflict": {
+                "symfony/dependency-injection": "<3.4",
+                "symfony/process": "<3.3"
+            },
+            "require-dev": {
+                "psr/log": "~1.0",
+                "symfony/config": "~3.3|~4.0",
+                "symfony/dependency-injection": "~3.4|~4.0",
+                "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
+                "symfony/lock": "~3.4|~4.0",
+                "symfony/process": "~3.3|~4.0"
+            },
+            "suggest": {
+                "psr/log-implementation": "For using the console logger",
+                "symfony/event-dispatcher": "",
+                "symfony/lock": "",
+                "symfony/process": ""
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.4-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\Console\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony Console Component",
+            "homepage": "https://symfony.com",
+            "time": "2018-10-02T16:33:53+00:00"
+        },
+        {
+            "name": "symfony/css-selector",
+            "version": "v4.1.6",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/css-selector.git",
+                "reference": "d67de79a70a27d93c92c47f37ece958bf8de4d8a"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/css-selector/zipball/d67de79a70a27d93c92c47f37ece958bf8de4d8a",
+                "reference": "d67de79a70a27d93c92c47f37ece958bf8de4d8a",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.1.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.1-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\CssSelector\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Jean-François Simon",
+                    "email": "jeanfrancois.simon@sensiolabs.com"
+                },
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony CssSelector Component",
+            "homepage": "https://symfony.com",
+            "time": "2018-10-02T16:36:10+00:00"
+        },
+        {
+            "name": "symfony/debug",
+            "version": "v3.4.17",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/debug.git",
+                "reference": "0a612e9dfbd2ccce03eb174365f31ecdca930ff6"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/debug/zipball/0a612e9dfbd2ccce03eb174365f31ecdca930ff6",
+                "reference": "0a612e9dfbd2ccce03eb174365f31ecdca930ff6",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.5.9|>=7.0.8",
+                "psr/log": "~1.0"
+            },
+            "conflict": {
+                "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
+            },
+            "require-dev": {
+                "symfony/http-kernel": "~2.8|~3.0|~4.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.4-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\Debug\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony Debug Component",
+            "homepage": "https://symfony.com",
+            "time": "2018-10-02T16:33:53+00:00"
+        },
+        {
+            "name": "symfony/event-dispatcher",
+            "version": "v4.1.6",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/event-dispatcher.git",
+                "reference": "bfb30c2ad377615a463ebbc875eba64a99f6aa3e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/bfb30c2ad377615a463ebbc875eba64a99f6aa3e",
+                "reference": "bfb30c2ad377615a463ebbc875eba64a99f6aa3e",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.1.3"
+            },
+            "conflict": {
+                "symfony/dependency-injection": "<3.4"
+            },
+            "require-dev": {
+                "psr/log": "~1.0",
+                "symfony/config": "~3.4|~4.0",
+                "symfony/dependency-injection": "~3.4|~4.0",
+                "symfony/expression-language": "~3.4|~4.0",
+                "symfony/stopwatch": "~3.4|~4.0"
+            },
+            "suggest": {
+                "symfony/dependency-injection": "",
+                "symfony/http-kernel": ""
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.1-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\EventDispatcher\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony EventDispatcher Component",
+            "homepage": "https://symfony.com",
+            "time": "2018-07-26T09:10:45+00:00"
+        },
+        {
+            "name": "symfony/finder",
+            "version": "v3.4.17",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/finder.git",
+                "reference": "54ba444dddc5bd5708a34bd095ea67c6eb54644d"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/finder/zipball/54ba444dddc5bd5708a34bd095ea67c6eb54644d",
+                "reference": "54ba444dddc5bd5708a34bd095ea67c6eb54644d",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.5.9|>=7.0.8"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.4-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\Finder\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony Finder Component",
+            "homepage": "https://symfony.com",
+            "time": "2018-10-03T08:46:40+00:00"
+        },
+        {
+            "name": "symfony/http-foundation",
+            "version": "v3.4.17",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/http-foundation.git",
+                "reference": "3a4498236ade473c52b92d509303e5fd1b211ab1"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3a4498236ade473c52b92d509303e5fd1b211ab1",
+                "reference": "3a4498236ade473c52b92d509303e5fd1b211ab1",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.5.9|>=7.0.8",
+                "symfony/polyfill-mbstring": "~1.1",
+                "symfony/polyfill-php70": "~1.6"
+            },
+            "require-dev": {
+                "symfony/expression-language": "~2.8|~3.0|~4.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.4-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\HttpFoundation\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony HttpFoundation Component",
+            "homepage": "https://symfony.com",
+            "time": "2018-10-03T08:48:18+00:00"
+        },
+        {
+            "name": "symfony/http-kernel",
+            "version": "v3.4.17",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/http-kernel.git",
+                "reference": "a0944a9a1d8845da724236cde9a310964acadb1c"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a0944a9a1d8845da724236cde9a310964acadb1c",
+                "reference": "a0944a9a1d8845da724236cde9a310964acadb1c",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.5.9|>=7.0.8",
+                "psr/log": "~1.0",
+                "symfony/debug": "~2.8|~3.0|~4.0",
+                "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
+                "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
+                "symfony/polyfill-ctype": "~1.8"
+            },
+            "conflict": {
+                "symfony/config": "<2.8",
+                "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
+                "symfony/var-dumper": "<3.3",
+                "twig/twig": "<1.34|<2.4,>=2"
+            },
+            "provide": {
+                "psr/log-implementation": "1.0"
+            },
+            "require-dev": {
+                "psr/cache": "~1.0",
+                "symfony/browser-kit": "~2.8|~3.0|~4.0",
+                "symfony/class-loader": "~2.8|~3.0",
+                "symfony/config": "~2.8|~3.0|~4.0",
+                "symfony/console": "~2.8|~3.0|~4.0",
+                "symfony/css-selector": "~2.8|~3.0|~4.0",
+                "symfony/dependency-injection": "^3.4.10|^4.0.10",
+                "symfony/dom-crawler": "~2.8|~3.0|~4.0",
+                "symfony/expression-language": "~2.8|~3.0|~4.0",
+                "symfony/finder": "~2.8|~3.0|~4.0",
+                "symfony/process": "~2.8|~3.0|~4.0",
+                "symfony/routing": "~3.4|~4.0",
+                "symfony/stopwatch": "~2.8|~3.0|~4.0",
+                "symfony/templating": "~2.8|~3.0|~4.0",
+                "symfony/translation": "~2.8|~3.0|~4.0",
+                "symfony/var-dumper": "~3.3|~4.0"
+            },
+            "suggest": {
+                "symfony/browser-kit": "",
+                "symfony/config": "",
+                "symfony/console": "",
+                "symfony/dependency-injection": "",
+                "symfony/finder": "",
+                "symfony/var-dumper": ""
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.4-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\HttpKernel\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony HttpKernel Component",
+            "homepage": "https://symfony.com",
+            "time": "2018-10-03T12:03:34+00:00"
+        },
+        {
+            "name": "symfony/polyfill-ctype",
+            "version": "v1.9.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/polyfill-ctype.git",
+                "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
+                "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.3"
+            },
+            "suggest": {
+                "ext-ctype": "For best performance"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.9-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Polyfill\\Ctype\\": ""
+                },
+                "files": [
+                    "bootstrap.php"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                },
+                {
+                    "name": "Gert de Pagter",
+                    "email": "BackEndTea@gmail.com"
+                }
+            ],
+            "description": "Symfony polyfill for ctype functions",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "compatibility",
+                "ctype",
+                "polyfill",
+                "portable"
+            ],
+            "time": "2018-08-06T14:22:27+00:00"
+        },
+        {
+            "name": "symfony/polyfill-mbstring",
+            "version": "v1.9.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/polyfill-mbstring.git",
+                "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/d0cd638f4634c16d8df4508e847f14e9e43168b8",
+                "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.3"
+            },
+            "suggest": {
+                "ext-mbstring": "For best performance"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.9-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Polyfill\\Mbstring\\": ""
+                },
+                "files": [
+                    "bootstrap.php"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony polyfill for the Mbstring extension",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "compatibility",
+                "mbstring",
+                "polyfill",
+                "portable",
+                "shim"
+            ],
+            "time": "2018-08-06T14:22:27+00:00"
+        },
+        {
+            "name": "symfony/polyfill-php56",
+            "version": "v1.9.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/polyfill-php56.git",
+                "reference": "7b4fc009172cc0196535b0328bd1226284a28000"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/7b4fc009172cc0196535b0328bd1226284a28000",
+                "reference": "7b4fc009172cc0196535b0328bd1226284a28000",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.3",
+                "symfony/polyfill-util": "~1.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.9-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Polyfill\\Php56\\": ""
+                },
+                "files": [
+                    "bootstrap.php"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "compatibility",
+                "polyfill",
+                "portable",
+                "shim"
+            ],
+            "time": "2018-08-06T14:22:27+00:00"
+        },
+        {
+            "name": "symfony/polyfill-php70",
+            "version": "v1.9.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/polyfill-php70.git",
+                "reference": "1e24b0c4a56d55aaf368763a06c6d1c7d3194934"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/1e24b0c4a56d55aaf368763a06c6d1c7d3194934",
+                "reference": "1e24b0c4a56d55aaf368763a06c6d1c7d3194934",
+                "shasum": ""
+            },
+            "require": {
+                "paragonie/random_compat": "~1.0|~2.0|~9.99",
+                "php": ">=5.3.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.9-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Polyfill\\Php70\\": ""
+                },
+                "files": [
+                    "bootstrap.php"
+                ],
+                "classmap": [
+                    "Resources/stubs"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "compatibility",
+                "polyfill",
+                "portable",
+                "shim"
+            ],
+            "time": "2018-08-06T14:22:27+00:00"
+        },
+        {
+            "name": "symfony/polyfill-util",
+            "version": "v1.9.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/polyfill-util.git",
+                "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/8e15d04ba3440984d23e7964b2ee1d25c8de1581",
+                "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.9-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Polyfill\\Util\\": ""
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony utilities for portability of PHP codes",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "compat",
+                "compatibility",
+                "polyfill",
+                "shim"
+            ],
+            "time": "2018-08-06T14:22:27+00:00"
+        },
+        {
+            "name": "symfony/process",
+            "version": "v3.4.17",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/process.git",
+                "reference": "1dc2977afa7d70f90f3fefbcd84152813558910e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/process/zipball/1dc2977afa7d70f90f3fefbcd84152813558910e",
+                "reference": "1dc2977afa7d70f90f3fefbcd84152813558910e",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.5.9|>=7.0.8"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.4-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\Process\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony Process Component",
+            "homepage": "https://symfony.com",
+            "time": "2018-10-02T12:28:39+00:00"
+        },
+        {
+            "name": "symfony/psr-http-message-bridge",
+            "version": "v1.1.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/psr-http-message-bridge.git",
+                "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/53c15a6a7918e6c2ab16ae370ea607fb40cab196",
+                "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.3.3 || ^7.0",
+                "psr/http-message": "^1.0",
+                "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
+            },
+            "require-dev": {
+                "symfony/phpunit-bridge": "^3.4 || 4.0"
+            },
+            "suggest": {
+                "psr/http-factory-implementation": "To use the PSR-17 factory",
+                "psr/http-message-implementation": "To use the HttpFoundation factory",
+                "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
+            },
+            "type": "symfony-bridge",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.1-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Bridge\\PsrHttpMessage\\": ""
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Symfony Community",
+                    "homepage": "http://symfony.com/contributors"
+                },
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                }
+            ],
+            "description": "PSR HTTP message bridge",
+            "homepage": "http://symfony.com",
+            "keywords": [
+                "http",
+                "http-message",
+                "psr-7"
+            ],
+            "time": "2018-08-30T16:28:28+00:00"
+        },
+        {
+            "name": "symfony/routing",
+            "version": "v3.4.17",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/routing.git",
+                "reference": "585f6e2d740393d546978769dd56e496a6233e0b"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/routing/zipball/585f6e2d740393d546978769dd56e496a6233e0b",
+                "reference": "585f6e2d740393d546978769dd56e496a6233e0b",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.5.9|>=7.0.8"
+            },
+            "conflict": {
+                "symfony/config": "<3.3.1",
+                "symfony/dependency-injection": "<3.3",
+                "symfony/yaml": "<3.4"
+            },
+            "require-dev": {
+                "doctrine/annotations": "~1.0",
+                "psr/log": "~1.0",
+                "symfony/config": "^3.3.1|~4.0",
+                "symfony/dependency-injection": "~3.3|~4.0",
+                "symfony/expression-language": "~2.8|~3.0|~4.0",
+                "symfony/http-foundation": "~2.8|~3.0|~4.0",
+                "symfony/yaml": "~3.4|~4.0"
+            },
+            "suggest": {
+                "doctrine/annotations": "For using the annotation loader",
+                "symfony/config": "For using the all-in-one router or any loader",
+                "symfony/dependency-injection": "For loading routes from a service",
+                "symfony/expression-language": "For using expression matching",
+                "symfony/http-foundation": "For using a Symfony Request object",
+                "symfony/yaml": "For using the YAML loader"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.4-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\Routing\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony Routing Component",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "router",
+                "routing",
+                "uri",
+                "url"
+            ],
+            "time": "2018-10-02T12:28:39+00:00"
+        },
+        {
+            "name": "symfony/translation",
+            "version": "v4.1.6",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/translation.git",
+                "reference": "9f0b61e339160a466ebcde167a6c5521c810e304"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/translation/zipball/9f0b61e339160a466ebcde167a6c5521c810e304",
+                "reference": "9f0b61e339160a466ebcde167a6c5521c810e304",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.1.3",
+                "symfony/polyfill-mbstring": "~1.0"
+            },
+            "conflict": {
+                "symfony/config": "<3.4",
+                "symfony/dependency-injection": "<3.4",
+                "symfony/yaml": "<3.4"
+            },
+            "require-dev": {
+                "psr/log": "~1.0",
+                "symfony/config": "~3.4|~4.0",
+                "symfony/console": "~3.4|~4.0",
+                "symfony/dependency-injection": "~3.4|~4.0",
+                "symfony/finder": "~2.8|~3.0|~4.0",
+                "symfony/intl": "~3.4|~4.0",
+                "symfony/yaml": "~3.4|~4.0"
+            },
+            "suggest": {
+                "psr/log-implementation": "To use logging capability in translator",
+                "symfony/config": "",
+                "symfony/yaml": ""
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.1-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\Translation\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony Translation Component",
+            "homepage": "https://symfony.com",
+            "time": "2018-10-02T16:36:10+00:00"
+        },
+        {
+            "name": "symfony/var-dumper",
+            "version": "v3.4.17",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/var-dumper.git",
+                "reference": "ff8ac19e97e5c7c3979236b584719a1190f84181"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ff8ac19e97e5c7c3979236b584719a1190f84181",
+                "reference": "ff8ac19e97e5c7c3979236b584719a1190f84181",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.5.9|>=7.0.8",
+                "symfony/polyfill-mbstring": "~1.0"
+            },
+            "conflict": {
+                "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
+            },
+            "require-dev": {
+                "ext-iconv": "*",
+                "twig/twig": "~1.34|~2.4"
+            },
+            "suggest": {
+                "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
+                "ext-intl": "To show region name in time zone dump",
+                "ext-symfony_debug": ""
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.4-dev"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "Resources/functions/dump.php"
+                ],
+                "psr-4": {
+                    "Symfony\\Component\\VarDumper\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony mechanism for exploring and dumping PHP variables",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "debug",
+                "dump"
+            ],
+            "time": "2018-10-02T16:33:53+00:00"
+        },
+        {
+            "name": "tijsverkoyen/css-to-inline-styles",
+            "version": "2.2.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
+                "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
+                "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.5 || ^7.0",
+                "symfony/css-selector": "^2.7 || ^3.0 || ^4.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.2.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "TijsVerkoyen\\CssToInlineStyles\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Tijs Verkoyen",
+                    "email": "css_to_inline_styles@verkoyen.eu",
+                    "role": "Developer"
+                }
+            ],
+            "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
+            "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
+            "time": "2017-11-27T11:13:29+00:00"
+        },
+        {
+            "name": "tinify/tinify",
+            "version": "1.5.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/tinify/tinify-php.git",
+                "reference": "b15d1f31d94d9b06e60251543cc918f426f0d55b"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/tinify/tinify-php/zipball/b15d1f31d94d9b06e60251543cc918f426f0d55b",
+                "reference": "b15d1f31d94d9b06e60251543cc918f426f0d55b",
+                "shasum": ""
+            },
+            "require": {
+                "ext-curl": "*",
+                "ext-json": "*",
+                "lib-curl": ">=7.20.0",
+                "php": ">=5.3.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "~4.0",
+                "symfony/yaml": "~2.0"
+            },
+            "type": "library",
+            "autoload": {
+                "files": [
+                    "lib/Tinify.php",
+                    "lib/Tinify/Exception.php"
+                ],
+                "psr-4": {
+                    "Tinify\\": "lib/Tinify/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Rolf Timmermans",
+                    "email": "rolftimmermans@voormedia.com"
+                }
+            ],
+            "description": "PHP client for the Tinify API. Tinify compresses your images intelligently. Read more at https://tinify.com.",
+            "homepage": "https://tinify.com/developers",
+            "keywords": [
+                "api",
+                "compress",
+                "images",
+                "tinify",
+                "tinyjpg",
+                "tinypng"
+            ],
+            "time": "2017-07-19T12:26:04+00:00"
+        },
+        {
+            "name": "vlucas/phpdotenv",
+            "version": "v2.5.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/vlucas/phpdotenv.git",
+                "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e",
+                "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.9"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^4.8.35 || ^5.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.5-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Dotenv\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Vance Lucas",
+                    "email": "vance@vancelucas.com",
+                    "homepage": "http://www.vancelucas.com"
+                }
+            ],
+            "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
+            "keywords": [
+                "dotenv",
+                "env",
+                "environment"
+            ],
+            "time": "2018-07-29T20:33:41+00:00"
+        },
+        {
+            "name": "webmozart/assert",
+            "version": "1.3.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/webmozart/assert.git",
+                "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
+                "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.3.3 || ^7.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^4.6",
+                "sebastian/version": "^1.0.1"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.3-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Webmozart\\Assert\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Bernhard Schussek",
+                    "email": "bschussek@gmail.com"
+                }
+            ],
+            "description": "Assertions to validate method input/output with nice error messages.",
+            "keywords": [
+                "assert",
+                "check",
+                "validate"
+            ],
+            "time": "2018-01-29T19:49:41+00:00"
+        },
+        {
+            "name": "zendframework/zend-diactoros",
+            "version": "1.8.6",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/zendframework/zend-diactoros.git",
+                "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
+                "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.6 || ^7.0",
+                "psr/http-message": "^1.0"
+            },
+            "provide": {
+                "psr/http-message-implementation": "1.0"
+            },
+            "require-dev": {
+                "ext-dom": "*",
+                "ext-libxml": "*",
+                "php-http/psr7-integration-tests": "dev-master",
+                "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
+                "zendframework/zend-coding-standard": "~1.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.8.x-dev",
+                    "dev-develop": "1.9.x-dev",
+                    "dev-release-2.0": "2.0.x-dev"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "src/functions/create_uploaded_file.php",
+                    "src/functions/marshal_headers_from_sapi.php",
+                    "src/functions/marshal_method_from_sapi.php",
+                    "src/functions/marshal_protocol_version_from_sapi.php",
+                    "src/functions/marshal_uri_from_sapi.php",
+                    "src/functions/normalize_server.php",
+                    "src/functions/normalize_uploaded_files.php",
+                    "src/functions/parse_cookie_header.php"
+                ],
+                "psr-4": {
+                    "Zend\\Diactoros\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-2-Clause"
+            ],
+            "description": "PSR HTTP Message implementations",
+            "homepage": "https://github.com/zendframework/zend-diactoros",
+            "keywords": [
+                "http",
+                "psr",
+                "psr-7"
+            ],
+            "time": "2018-09-05T19:29:37+00:00"
+        }
+    ],
+    "packages-dev": [
+        {
+            "name": "barryvdh/laravel-ide-helper",
+            "version": "v2.5.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/barryvdh/laravel-ide-helper.git",
+                "reference": "7db1843473e1562d8e0490b51db847d3a1415140"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/7db1843473e1562d8e0490b51db847d3a1415140",
+                "reference": "7db1843473e1562d8e0490b51db847d3a1415140",
+                "shasum": ""
+            },
+            "require": {
+                "barryvdh/reflection-docblock": "^2.0.4",
+                "composer/composer": "^1.6",
+                "illuminate/console": "^5.5,<5.8",
+                "illuminate/filesystem": "^5.5,<5.8",
+                "illuminate/support": "^5.5,<5.8",
+                "php": ">=7"
+            },
+            "require-dev": {
+                "doctrine/dbal": "~2.3",
+                "illuminate/config": "^5.1,<5.8",
+                "illuminate/view": "^5.1,<5.8",
+                "phpro/grumphp": "^0.14",
+                "phpunit/phpunit": "4.*",
+                "scrutinizer/ocular": "~1.1",
+                "squizlabs/php_codesniffer": "^3"
+            },
+            "suggest": {
+                "doctrine/dbal": "Load information from the database about models for phpdocs (~2.3)"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.5-dev"
+                },
+                "laravel": {
+                    "providers": [
+                        "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
+                    ]
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Barryvdh\\LaravelIdeHelper\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Barry vd. Heuvel",
+                    "email": "barryvdh@gmail.com"
+                }
+            ],
+            "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
+            "keywords": [
+                "autocomplete",
+                "codeintel",
+                "helper",
+                "ide",
+                "laravel",
+                "netbeans",
+                "phpdoc",
+                "phpstorm",
+                "sublime"
+            ],
+            "time": "2018-09-06T18:41:09+00:00"
+        },
+        {
+            "name": "barryvdh/reflection-docblock",
+            "version": "v2.0.4",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
+                "reference": "3dcbd98b5d9384a5357266efba8fd29884458e5c"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/3dcbd98b5d9384a5357266efba8fd29884458e5c",
+                "reference": "3dcbd98b5d9384a5357266efba8fd29884458e5c",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "~4.0,<4.5"
+            },
+            "suggest": {
+                "dflydev/markdown": "~1.0",
+                "erusev/parsedown": "~1.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-0": {
+                    "Barryvdh": [
+                        "src/"
+                    ]
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Mike van Riel",
+                    "email": "mike.vanriel@naenius.com"
+                }
+            ],
+            "time": "2016-06-13T19:28:20+00:00"
+        },
+        {
+            "name": "composer/ca-bundle",
+            "version": "1.1.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/composer/ca-bundle.git",
+                "reference": "8afa52cd417f4ec417b4bfe86b68106538a87660"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8afa52cd417f4ec417b4bfe86b68106538a87660",
+                "reference": "8afa52cd417f4ec417b4bfe86b68106538a87660",
+                "shasum": ""
+            },
+            "require": {
+                "ext-openssl": "*",
+                "ext-pcre": "*",
+                "php": "^5.3.2 || ^7.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
+                "psr/log": "^1.0",
+                "symfony/process": "^2.5 || ^3.0 || ^4.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Composer\\CaBundle\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Jordi Boggiano",
+                    "email": "j.boggiano@seld.be",
+                    "homepage": "http://seld.be"
+                }
+            ],
+            "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
+            "keywords": [
+                "cabundle",
+                "cacert",
+                "certificate",
+                "ssl",
+                "tls"
+            ],
+            "time": "2018-10-18T06:09:13+00:00"
+        },
+        {
+            "name": "composer/composer",
+            "version": "1.7.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/composer/composer.git",
+                "reference": "576aab9b5abb2ed11a1c52353a759363216a4ad2"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/composer/composer/zipball/576aab9b5abb2ed11a1c52353a759363216a4ad2",
+                "reference": "576aab9b5abb2ed11a1c52353a759363216a4ad2",
+                "shasum": ""
+            },
+            "require": {
+                "composer/ca-bundle": "^1.0",
+                "composer/semver": "^1.0",
+                "composer/spdx-licenses": "^1.2",
+                "composer/xdebug-handler": "^1.1",
+                "justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0",
+                "php": "^5.3.2 || ^7.0",
+                "psr/log": "^1.0",
+                "seld/jsonlint": "^1.4",
+                "seld/phar-utils": "^1.0",
+                "symfony/console": "^2.7 || ^3.0 || ^4.0",
+                "symfony/filesystem": "^2.7 || ^3.0 || ^4.0",
+                "symfony/finder": "^2.7 || ^3.0 || ^4.0",
+                "symfony/process": "^2.7 || ^3.0 || ^4.0"
+            },
+            "conflict": {
+                "symfony/console": "2.8.38"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^4.8.35 || ^5.7",
+                "phpunit/phpunit-mock-objects": "^2.3 || ^3.0"
+            },
+            "suggest": {
+                "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
+                "ext-zip": "Enabling the zip extension allows you to unzip archives",
+                "ext-zlib": "Allow gzip compression of HTTP requests"
+            },
+            "bin": [
+                "bin/composer"
+            ],
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.7-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Composer\\": "src/Composer"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nils Adermann",
+                    "email": "naderman@naderman.de",
+                    "homepage": "http://www.naderman.de"
+                },
+                {
+                    "name": "Jordi Boggiano",
+                    "email": "j.boggiano@seld.be",
+                    "homepage": "http://seld.be"
+                }
+            ],
+            "description": "Composer helps you declare, manage and install dependencies of PHP projects, ensuring you have the right stack everywhere.",
+            "homepage": "https://getcomposer.org/",
+            "keywords": [
+                "autoload",
+                "dependency",
+                "package"
+            ],
+            "time": "2018-08-16T14:57:12+00:00"
+        },
+        {
+            "name": "composer/semver",
+            "version": "1.4.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/composer/semver.git",
+                "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
+                "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.3.2 || ^7.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^4.5 || ^5.0.5",
+                "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Composer\\Semver\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nils Adermann",
+                    "email": "naderman@naderman.de",
+                    "homepage": "http://www.naderman.de"
+                },
+                {
+                    "name": "Jordi Boggiano",
+                    "email": "j.boggiano@seld.be",
+                    "homepage": "http://seld.be"
+                },
+                {
+                    "name": "Rob Bast",
+                    "email": "rob.bast@gmail.com",
+                    "homepage": "http://robbast.nl"
+                }
+            ],
+            "description": "Semver library that offers utilities, version constraint parsing and validation.",
+            "keywords": [
+                "semantic",
+                "semver",
+                "validation",
+                "versioning"
+            ],
+            "time": "2016-08-30T16:08:34+00:00"
+        },
+        {
+            "name": "composer/spdx-licenses",
+            "version": "1.4.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/composer/spdx-licenses.git",
+                "reference": "cb17687e9f936acd7e7245ad3890f953770dec1b"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/cb17687e9f936acd7e7245ad3890f953770dec1b",
+                "reference": "cb17687e9f936acd7e7245ad3890f953770dec1b",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.3.2 || ^7.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
+                "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Composer\\Spdx\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nils Adermann",
+                    "email": "naderman@naderman.de",
+                    "homepage": "http://www.naderman.de"
+                },
+                {
+                    "name": "Jordi Boggiano",
+                    "email": "j.boggiano@seld.be",
+                    "homepage": "http://seld.be"
+                },
+                {
+                    "name": "Rob Bast",
+                    "email": "rob.bast@gmail.com",
+                    "homepage": "http://robbast.nl"
+                }
+            ],
+            "description": "SPDX licenses list and validation library.",
+            "keywords": [
+                "license",
+                "spdx",
+                "validator"
+            ],
+            "time": "2018-04-30T10:33:04+00:00"
+        },
+        {
+            "name": "composer/xdebug-handler",
+            "version": "1.3.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/composer/xdebug-handler.git",
+                "reference": "b8e9745fb9b06ea6664d8872c4505fb16df4611c"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/b8e9745fb9b06ea6664d8872c4505fb16df4611c",
+                "reference": "b8e9745fb9b06ea6664d8872c4505fb16df4611c",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.3.2 || ^7.0",
+                "psr/log": "^1.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Composer\\XdebugHandler\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "John Stevenson",
+                    "email": "john-stevenson@blueyonder.co.uk"
+                }
+            ],
+            "description": "Restarts a process without xdebug.",
+            "keywords": [
+                "Xdebug",
+                "performance"
+            ],
+            "time": "2018-08-31T19:07:57+00:00"
+        },
+        {
+            "name": "doctrine/instantiator",
+            "version": "1.1.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/doctrine/instantiator.git",
+                "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
+                "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.1"
+            },
+            "require-dev": {
+                "athletic/athletic": "~0.1.8",
+                "ext-pdo": "*",
+                "ext-phar": "*",
+                "phpunit/phpunit": "^6.2.3",
+                "squizlabs/php_codesniffer": "^3.0.2"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.2.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Marco Pivetta",
+                    "email": "ocramius@gmail.com",
+                    "homepage": "http://ocramius.github.com/"
+                }
+            ],
+            "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
+            "homepage": "https://github.com/doctrine/instantiator",
+            "keywords": [
+                "constructor",
+                "instantiate"
+            ],
+            "time": "2017-07-22T11:58:36+00:00"
+        },
+        {
+            "name": "filp/whoops",
+            "version": "2.3.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/filp/whoops.git",
+                "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/filp/whoops/zipball/bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
+                "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.5.9 || ^7.0",
+                "psr/log": "^1.0.1"
+            },
+            "require-dev": {
+                "mockery/mockery": "^0.9 || ^1.0",
+                "phpunit/phpunit": "^4.8.35 || ^5.7",
+                "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
+            },
+            "suggest": {
+                "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
+                "whoops/soap": "Formats errors as SOAP responses"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.2-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Whoops\\": "src/Whoops/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Filipe Dobreira",
+                    "homepage": "https://github.com/filp",
+                    "role": "Developer"
+                }
+            ],
+            "description": "php error handling for cool kids",
+            "homepage": "https://filp.github.io/whoops/",
+            "keywords": [
+                "error",
+                "exception",
+                "handling",
+                "library",
+                "throwable",
+                "whoops"
+            ],
+            "time": "2018-10-23T09:00:00+00:00"
+        },
+        {
+            "name": "fzaninotto/faker",
+            "version": "v1.8.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/fzaninotto/Faker.git",
+                "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
+                "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.3.3 || ^7.0"
+            },
+            "require-dev": {
+                "ext-intl": "*",
+                "phpunit/phpunit": "^4.8.35 || ^5.7",
+                "squizlabs/php_codesniffer": "^1.5"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.8-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Faker\\": "src/Faker/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "François Zaninotto"
+                }
+            ],
+            "description": "Faker is a PHP library that generates fake data for you.",
+            "keywords": [
+                "data",
+                "faker",
+                "fixtures"
+            ],
+            "time": "2018-07-12T10:23:15+00:00"
+        },
+        {
+            "name": "hamcrest/hamcrest-php",
+            "version": "v1.2.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/hamcrest/hamcrest-php.git",
+                "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/b37020aa976fa52d3de9aa904aa2522dc518f79c",
+                "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.2"
+            },
+            "replace": {
+                "cordoval/hamcrest-php": "*",
+                "davedevelopment/hamcrest-php": "*",
+                "kodova/hamcrest-php": "*"
+            },
+            "require-dev": {
+                "phpunit/php-file-iterator": "1.3.3",
+                "satooshi/php-coveralls": "dev-master"
+            },
+            "type": "library",
+            "autoload": {
+                "classmap": [
+                    "hamcrest"
+                ],
+                "files": [
+                    "hamcrest/Hamcrest.php"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD"
+            ],
+            "description": "This is the PHP port of Hamcrest Matchers",
+            "keywords": [
+                "test"
+            ],
+            "time": "2015-05-11T14:41:42+00:00"
+        },
+        {
+            "name": "justinrainbow/json-schema",
+            "version": "5.2.7",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/justinrainbow/json-schema.git",
+                "reference": "8560d4314577199ba51bf2032f02cd1315587c23"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/8560d4314577199ba51bf2032f02cd1315587c23",
+                "reference": "8560d4314577199ba51bf2032f02cd1315587c23",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.3"
+            },
+            "require-dev": {
+                "friendsofphp/php-cs-fixer": "^2.1",
+                "json-schema/json-schema-test-suite": "1.2.0",
+                "phpunit/phpunit": "^4.8.35"
+            },
+            "bin": [
+                "bin/validate-json"
+            ],
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "5.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "JsonSchema\\": "src/JsonSchema/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Bruno Prieto Reis",
+                    "email": "bruno.p.reis@gmail.com"
+                },
+                {
+                    "name": "Justin Rainbow",
+                    "email": "justin.rainbow@gmail.com"
+                },
+                {
+                    "name": "Igor Wiedler",
+                    "email": "igor@wiedler.ch"
+                },
+                {
+                    "name": "Robert Schönthal",
+                    "email": "seroscho@googlemail.com"
+                }
+            ],
+            "description": "A library to validate a json schema.",
+            "homepage": "https://github.com/justinrainbow/json-schema",
+            "keywords": [
+                "json",
+                "schema"
+            ],
+            "time": "2018-02-14T22:26:30+00:00"
+        },
+        {
+            "name": "mockery/mockery",
+            "version": "0.9.9",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/mockery/mockery.git",
+                "reference": "6fdb61243844dc924071d3404bb23994ea0b6856"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/mockery/mockery/zipball/6fdb61243844dc924071d3404bb23994ea0b6856",
+                "reference": "6fdb61243844dc924071d3404bb23994ea0b6856",
+                "shasum": ""
+            },
+            "require": {
+                "hamcrest/hamcrest-php": "~1.1",
+                "lib-pcre": ">=7.0",
+                "php": ">=5.3.2"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "~4.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "0.9.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-0": {
+                    "Mockery": "library/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Pádraic Brady",
+                    "email": "padraic.brady@gmail.com",
+                    "homepage": "http://blog.astrumfutura.com"
+                },
+                {
+                    "name": "Dave Marshall",
+                    "email": "dave.marshall@atstsolutions.co.uk",
+                    "homepage": "http://davedevelopment.co.uk"
+                }
+            ],
+            "description": "Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL). Designed as a drop in alternative to PHPUnit's phpunit-mock-objects library, Mockery is easy to integrate with PHPUnit and can operate alongside phpunit-mock-objects without the World ending.",
+            "homepage": "http://github.com/padraic/mockery",
+            "keywords": [
+                "BDD",
+                "TDD",
+                "library",
+                "mock",
+                "mock objects",
+                "mockery",
+                "stub",
+                "test",
+                "test double",
+                "testing"
+            ],
+            "time": "2017-02-28T12:52:32+00:00"
+        },
+        {
+            "name": "myclabs/deep-copy",
+            "version": "1.8.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/myclabs/DeepCopy.git",
+                "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
+                "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.1"
+            },
+            "replace": {
+                "myclabs/deep-copy": "self.version"
+            },
+            "require-dev": {
+                "doctrine/collections": "^1.0",
+                "doctrine/common": "^2.6",
+                "phpunit/phpunit": "^7.1"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "DeepCopy\\": "src/DeepCopy/"
+                },
+                "files": [
+                    "src/DeepCopy/deep_copy.php"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "description": "Create deep copies (clones) of your objects",
+            "keywords": [
+                "clone",
+                "copy",
+                "duplicate",
+                "object",
+                "object graph"
+            ],
+            "time": "2018-06-11T23:09:50+00:00"
+        },
+        {
+            "name": "phar-io/manifest",
+            "version": "1.0.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/phar-io/manifest.git",
+                "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
+                "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
+                "shasum": ""
+            },
+            "require": {
+                "ext-dom": "*",
+                "ext-phar": "*",
+                "phar-io/version": "^1.0.1",
+                "php": "^5.6 || ^7.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Arne Blankerts",
+                    "email": "arne@blankerts.de",
+                    "role": "Developer"
+                },
+                {
+                    "name": "Sebastian Heuer",
+                    "email": "sebastian@phpeople.de",
+                    "role": "Developer"
+                },
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "Developer"
+                }
+            ],
+            "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
+            "time": "2017-03-05T18:14:27+00:00"
+        },
+        {
+            "name": "phar-io/version",
+            "version": "1.0.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/phar-io/version.git",
+                "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
+                "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.6 || ^7.0"
+            },
+            "type": "library",
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Arne Blankerts",
+                    "email": "arne@blankerts.de",
+                    "role": "Developer"
+                },
+                {
+                    "name": "Sebastian Heuer",
+                    "email": "sebastian@phpeople.de",
+                    "role": "Developer"
+                },
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "Developer"
+                }
+            ],
+            "description": "Library for handling version information and constraints",
+            "time": "2017-03-05T17:38:23+00:00"
+        },
+        {
+            "name": "phpspec/prophecy",
+            "version": "1.8.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/phpspec/prophecy.git",
+                "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
+                "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
+                "shasum": ""
+            },
+            "require": {
+                "doctrine/instantiator": "^1.0.2",
+                "php": "^5.3|^7.0",
+                "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
+                "sebastian/comparator": "^1.1|^2.0|^3.0",
+                "sebastian/recursion-context": "^1.0|^2.0|^3.0"
+            },
+            "require-dev": {
+                "phpspec/phpspec": "^2.5|^3.2",
+                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.8.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-0": {
+                    "Prophecy\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Konstantin Kudryashov",
+                    "email": "ever.zet@gmail.com",
+                    "homepage": "http://everzet.com"
+                },
+                {
+                    "name": "Marcello Duarte",
+                    "email": "marcello.duarte@gmail.com"
+                }
+            ],
+            "description": "Highly opinionated mocking framework for PHP 5.3+",
+            "homepage": "https://github.com/phpspec/prophecy",
+            "keywords": [
+                "Double",
+                "Dummy",
+                "fake",
+                "mock",
+                "spy",
+                "stub"
+            ],
+            "time": "2018-08-05T17:53:17+00:00"
+        },
+        {
+            "name": "phpunit/php-code-coverage",
+            "version": "5.3.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
+                "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
+                "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
+                "shasum": ""
+            },
+            "require": {
+                "ext-dom": "*",
+                "ext-xmlwriter": "*",
+                "php": "^7.0",
+                "phpunit/php-file-iterator": "^1.4.2",
+                "phpunit/php-text-template": "^1.2.1",
+                "phpunit/php-token-stream": "^2.0.1",
+                "sebastian/code-unit-reverse-lookup": "^1.0.1",
+                "sebastian/environment": "^3.0",
+                "sebastian/version": "^2.0.1",
+                "theseer/tokenizer": "^1.1"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^6.0"
+            },
+            "suggest": {
+                "ext-xdebug": "^2.5.5"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "5.3.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
+            "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
+            "keywords": [
+                "coverage",
+                "testing",
+                "xunit"
+            ],
+            "time": "2018-04-06T15:36:58+00:00"
+        },
+        {
+            "name": "phpunit/php-file-iterator",
+            "version": "1.4.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
+                "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
+                "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.4.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sb@sebastian-bergmann.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "FilterIterator implementation that filters files based on a list of suffixes.",
+            "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
+            "keywords": [
+                "filesystem",
+                "iterator"
+            ],
+            "time": "2017-11-27T13:52:08+00:00"
+        },
+        {
+            "name": "phpunit/php-text-template",
+            "version": "1.2.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/php-text-template.git",
+                "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
+                "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.3"
+            },
+            "type": "library",
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Simple template engine.",
+            "homepage": "https://github.com/sebastianbergmann/php-text-template/",
+            "keywords": [
+                "template"
+            ],
+            "time": "2015-06-21T13:50:34+00:00"
+        },
+        {
+            "name": "phpunit/php-timer",
+            "version": "1.0.9",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/php-timer.git",
+                "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
+                "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.3.3 || ^7.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sb@sebastian-bergmann.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Utility class for timing",
+            "homepage": "https://github.com/sebastianbergmann/php-timer/",
+            "keywords": [
+                "timer"
+            ],
+            "time": "2017-02-26T11:10:40+00:00"
+        },
+        {
+            "name": "phpunit/php-token-stream",
+            "version": "2.0.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/php-token-stream.git",
+                "reference": "791198a2c6254db10131eecfe8c06670700904db"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
+                "reference": "791198a2c6254db10131eecfe8c06670700904db",
+                "shasum": ""
+            },
+            "require": {
+                "ext-tokenizer": "*",
+                "php": "^7.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^6.2.4"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Wrapper around PHP's tokenizer extension.",
+            "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
+            "keywords": [
+                "tokenizer"
+            ],
+            "time": "2017-11-27T05:48:46+00:00"
+        },
+        {
+            "name": "phpunit/phpunit",
+            "version": "6.5.13",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/phpunit.git",
+                "reference": "0973426fb012359b2f18d3bd1e90ef1172839693"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0973426fb012359b2f18d3bd1e90ef1172839693",
+                "reference": "0973426fb012359b2f18d3bd1e90ef1172839693",
+                "shasum": ""
+            },
+            "require": {
+                "ext-dom": "*",
+                "ext-json": "*",
+                "ext-libxml": "*",
+                "ext-mbstring": "*",
+                "ext-xml": "*",
+                "myclabs/deep-copy": "^1.6.1",
+                "phar-io/manifest": "^1.0.1",
+                "phar-io/version": "^1.0",
+                "php": "^7.0",
+                "phpspec/prophecy": "^1.7",
+                "phpunit/php-code-coverage": "^5.3",
+                "phpunit/php-file-iterator": "^1.4.3",
+                "phpunit/php-text-template": "^1.2.1",
+                "phpunit/php-timer": "^1.0.9",
+                "phpunit/phpunit-mock-objects": "^5.0.9",
+                "sebastian/comparator": "^2.1",
+                "sebastian/diff": "^2.0",
+                "sebastian/environment": "^3.1",
+                "sebastian/exporter": "^3.1",
+                "sebastian/global-state": "^2.0",
+                "sebastian/object-enumerator": "^3.0.3",
+                "sebastian/resource-operations": "^1.0",
+                "sebastian/version": "^2.0.1"
+            },
+            "conflict": {
+                "phpdocumentor/reflection-docblock": "3.0.2",
+                "phpunit/dbunit": "<3.0"
+            },
+            "require-dev": {
+                "ext-pdo": "*"
+            },
+            "suggest": {
+                "ext-xdebug": "*",
+                "phpunit/php-invoker": "^1.1"
+            },
+            "bin": [
+                "phpunit"
+            ],
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "6.5.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "The PHP Unit Testing framework.",
+            "homepage": "https://phpunit.de/",
+            "keywords": [
+                "phpunit",
+                "testing",
+                "xunit"
+            ],
+            "time": "2018-09-08T15:10:43+00:00"
+        },
+        {
+            "name": "phpunit/phpunit-mock-objects",
+            "version": "5.0.10",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
+                "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
+                "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
+                "shasum": ""
+            },
+            "require": {
+                "doctrine/instantiator": "^1.0.5",
+                "php": "^7.0",
+                "phpunit/php-text-template": "^1.2.1",
+                "sebastian/exporter": "^3.1"
+            },
+            "conflict": {
+                "phpunit/phpunit": "<6.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^6.5.11"
+            },
+            "suggest": {
+                "ext-soap": "*"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "5.0.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Mock Object library for PHPUnit",
+            "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
+            "keywords": [
+                "mock",
+                "xunit"
+            ],
+            "abandoned": true,
+            "time": "2018-08-09T05:50:03+00:00"
+        },
+        {
+            "name": "sebastian/code-unit-reverse-lookup",
+            "version": "1.0.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
+                "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
+                "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.6 || ^7.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^5.7 || ^6.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Looks up which function or method a line of code belongs to",
+            "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
+            "time": "2017-03-04T06:30:41+00:00"
+        },
+        {
+            "name": "sebastian/comparator",
+            "version": "2.1.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/comparator.git",
+                "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
+                "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.0",
+                "sebastian/diff": "^2.0 || ^3.0",
+                "sebastian/exporter": "^3.1"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^6.4"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.1.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Jeff Welch",
+                    "email": "whatthejeff@gmail.com"
+                },
+                {
+                    "name": "Volker Dusch",
+                    "email": "github@wallbash.com"
+                },
+                {
+                    "name": "Bernhard Schussek",
+                    "email": "bschussek@2bepublished.at"
+                },
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Provides the functionality to compare PHP values for equality",
+            "homepage": "https://github.com/sebastianbergmann/comparator",
+            "keywords": [
+                "comparator",
+                "compare",
+                "equality"
+            ],
+            "time": "2018-02-01T13:46:46+00:00"
+        },
+        {
+            "name": "sebastian/diff",
+            "version": "2.0.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/diff.git",
+                "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
+                "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^6.2"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Kore Nordmann",
+                    "email": "mail@kore-nordmann.de"
+                },
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Diff implementation",
+            "homepage": "https://github.com/sebastianbergmann/diff",
+            "keywords": [
+                "diff"
+            ],
+            "time": "2017-08-03T08:09:46+00:00"
+        },
+        {
+            "name": "sebastian/environment",
+            "version": "3.1.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/environment.git",
+                "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
+                "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^6.1"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.1.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Provides functionality to handle HHVM/PHP environments",
+            "homepage": "http://www.github.com/sebastianbergmann/environment",
+            "keywords": [
+                "Xdebug",
+                "environment",
+                "hhvm"
+            ],
+            "time": "2017-07-01T08:51:00+00:00"
+        },
+        {
+            "name": "sebastian/exporter",
+            "version": "3.1.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/exporter.git",
+                "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
+                "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.0",
+                "sebastian/recursion-context": "^3.0"
+            },
+            "require-dev": {
+                "ext-mbstring": "*",
+                "phpunit/phpunit": "^6.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.1.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Jeff Welch",
+                    "email": "whatthejeff@gmail.com"
+                },
+                {
+                    "name": "Volker Dusch",
+                    "email": "github@wallbash.com"
+                },
+                {
+                    "name": "Bernhard Schussek",
+                    "email": "bschussek@2bepublished.at"
+                },
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                },
+                {
+                    "name": "Adam Harvey",
+                    "email": "aharvey@php.net"
+                }
+            ],
+            "description": "Provides the functionality to export PHP variables for visualization",
+            "homepage": "http://www.github.com/sebastianbergmann/exporter",
+            "keywords": [
+                "export",
+                "exporter"
+            ],
+            "time": "2017-04-03T13:19:02+00:00"
+        },
+        {
+            "name": "sebastian/global-state",
+            "version": "2.0.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/global-state.git",
+                "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
+                "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^6.0"
+            },
+            "suggest": {
+                "ext-uopz": "*"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Snapshotting of global state",
+            "homepage": "http://www.github.com/sebastianbergmann/global-state",
+            "keywords": [
+                "global state"
+            ],
+            "time": "2017-04-27T15:39:26+00:00"
+        },
+        {
+            "name": "sebastian/object-enumerator",
+            "version": "3.0.3",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/object-enumerator.git",
+                "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
+                "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.0",
+                "sebastian/object-reflector": "^1.1.1",
+                "sebastian/recursion-context": "^3.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^6.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.0.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Traverses array structures and object graphs to enumerate all referenced objects",
+            "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
+            "time": "2017-08-03T12:35:26+00:00"
+        },
+        {
+            "name": "sebastian/object-reflector",
+            "version": "1.1.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/object-reflector.git",
+                "reference": "773f97c67f28de00d397be301821b06708fca0be"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
+                "reference": "773f97c67f28de00d397be301821b06708fca0be",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^6.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.1-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Allows reflection of object attributes, including inherited and non-public ones",
+            "homepage": "https://github.com/sebastianbergmann/object-reflector/",
+            "time": "2017-03-29T09:07:27+00:00"
+        },
+        {
+            "name": "sebastian/recursion-context",
+            "version": "3.0.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/recursion-context.git",
+                "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
+                "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^6.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "3.0.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Jeff Welch",
+                    "email": "whatthejeff@gmail.com"
+                },
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                },
+                {
+                    "name": "Adam Harvey",
+                    "email": "aharvey@php.net"
+                }
+            ],
+            "description": "Provides functionality to recursively process PHP variables",
+            "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
+            "time": "2017-03-03T06:23:57+00:00"
+        },
+        {
+            "name": "sebastian/resource-operations",
+            "version": "1.0.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/resource-operations.git",
+                "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
+                "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.6.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Provides a list of PHP built-in functions that operate on resources",
+            "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
+            "time": "2015-07-28T20:34:47+00:00"
+        },
+        {
+            "name": "sebastian/version",
+            "version": "2.0.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/version.git",
+                "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
+                "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.6"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.0.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Library that helps with managing the version number of Git-hosted PHP projects",
+            "homepage": "https://github.com/sebastianbergmann/version",
+            "time": "2016-10-03T07:35:21+00:00"
+        },
+        {
+            "name": "seld/jsonlint",
+            "version": "1.7.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/Seldaek/jsonlint.git",
+                "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/d15f59a67ff805a44c50ea0516d2341740f81a38",
+                "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^5.3 || ^7.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
+            },
+            "bin": [
+                "bin/jsonlint"
+            ],
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Seld\\JsonLint\\": "src/Seld/JsonLint/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Jordi Boggiano",
+                    "email": "j.boggiano@seld.be",
+                    "homepage": "http://seld.be"
+                }
+            ],
+            "description": "JSON Linter",
+            "keywords": [
+                "json",
+                "linter",
+                "parser",
+                "validator"
+            ],
+            "time": "2018-01-24T12:46:19+00:00"
+        },
+        {
+            "name": "seld/phar-utils",
+            "version": "1.0.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/Seldaek/phar-utils.git",
+                "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
+                "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Seld\\PharUtils\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Jordi Boggiano",
+                    "email": "j.boggiano@seld.be"
+                }
+            ],
+            "description": "PHAR file format utilities, for when PHP phars you up",
+            "keywords": [
+                "phra"
+            ],
+            "time": "2015-10-13T18:44:15+00:00"
+        },
+        {
+            "name": "symfony/filesystem",
+            "version": "v4.1.6",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/filesystem.git",
+                "reference": "596d12b40624055c300c8b619755b748ca5cf0b5"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/filesystem/zipball/596d12b40624055c300c8b619755b748ca5cf0b5",
+                "reference": "596d12b40624055c300c8b619755b748ca5cf0b5",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.1.3",
+                "symfony/polyfill-ctype": "~1.8"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.1-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\Filesystem\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony Filesystem Component",
+            "homepage": "https://symfony.com",
+            "time": "2018-10-02T12:40:59+00:00"
+        },
+        {
+            "name": "theseer/tokenizer",
+            "version": "1.1.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/theseer/tokenizer.git",
+                "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
+                "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
+                "shasum": ""
+            },
+            "require": {
+                "ext-dom": "*",
+                "ext-tokenizer": "*",
+                "ext-xmlwriter": "*",
+                "php": "^7.0"
+            },
+            "type": "library",
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Arne Blankerts",
+                    "email": "arne@blankerts.de",
+                    "role": "Developer"
+                }
+            ],
+            "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
+            "time": "2017-04-07T12:08:54+00:00"
+        }
+    ],
+    "aliases": [],
+    "minimum-stability": "stable",
+    "stability-flags": {
+        "dingo/api": 20,
+        "kosinix/grafika": 20
+    },
+    "prefer-stable": false,
+    "prefer-lowest": false,
+    "platform": {
+        "php": ">=7.0.0"
+    },
+    "platform-dev": []
+}

BIN
icon.jpg


+ 5755 - 0
install.php

xqd
@@ -0,0 +1,5755 @@
+<?php
+pdo_query("
+    /*
+Navicat MySQL Data Transfer
+
+Source Server         : 本地
+Source Server Version : 50727
+Source Host           : localhost:3306
+Source Database       : we7new
+
+Target Server Type    : MYSQL
+Target Server Version : 50727
+File Encoding         : 65001
+
+Date: 2020-02-14 14:37:17
+*/
+
+SET FOREIGN_KEY_CHECKS=0;
+
+-- ----------------------------
+-- Table structure for fanyun_account_logs
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_account_logs`;
+CREATE TABLE `fanyun_account_logs` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `from_id` int(10) unsigned NOT NULL COMMENT '来源对象id',
+  `from_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '来源对象名称',
+  `op` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '操作,charge:冲值,support:消耗,withdraw:提现',
+  `from_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '操作类型,1、余额,2、梦想币,3、现金',
+  `from_amount` int(10) unsigned NOT NULL COMMENT '操作金额from',
+  `to_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '操作类型,1、余额,2、梦想币,3、现金',
+  `to_id` int(10) unsigned NOT NULL COMMENT '目标对象id',
+  `to_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '来源目标对象名称',
+  `to_amount` int(10) unsigned NOT NULL COMMENT '操作金额to',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`),
+  KEY `idx_from` (`from_id`),
+  KEY `idx_to` (`to_id`),
+  KEY `idx_from_type` (`from_type`),
+  KEY `idx_to_type` (`to_type`),
+  KEY `idx_created_at` (`created_at`)
+) ENGINE=InnoDB AUTO_INCREMENT=65 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+
+-- ----------------------------
+-- Records of fanyun_account_logs
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_admin_access
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_admin_access`;
+CREATE TABLE `fanyun_admin_access` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `role_id` int(11) NOT NULL COMMENT '角色的ID',
+  `menu_id` int(11) NOT NULL COMMENT '菜单ID',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`),
+  KEY `idx_access_role_id` (`role_id`),
+  KEY `idx_deleted_at` (`deleted_at`)
+) ENGINE=InnoDB AUTO_INCREMENT=1673 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+
+-- ----------------------------
+-- Records of fanyun_admin_access
+-- ----------------------------
+INSERT INTO `fanyun_admin_access` VALUES ('729', '6', '1', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('730', '6', '711', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('731', '6', '712', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('732', '6', '609', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('733', '6', '103', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('734', '6', '519', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('735', '6', '520', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('736', '6', '521', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('737', '6', '578', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('738', '6', '722', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('739', '6', '104', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('740', '6', '522', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('741', '6', '523', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('742', '6', '524', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('743', '6', '525', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('744', '6', '105', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('745', '6', '544', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('746', '6', '526', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('747', '6', '5', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('748', '6', '501', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('749', '6', '502', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('750', '6', '542', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('751', '6', '543', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1146', '1', '2', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1147', '1', '687', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1148', '1', '716', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1149', '1', '717', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1150', '1', '718', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1151', '1', '719', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1152', '1', '637', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1153', '1', '638', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1154', '1', '639', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1155', '1', '640', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1156', '1', '641', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1157', '1', '642', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1158', '1', '645', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1159', '1', '646', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1160', '1', '649', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1161', '1', '650', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1162', '1', '652', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1163', '1', '651', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1164', '1', '653', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1165', '1', '654', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1166', '1', '655', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1167', '1', '657', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1168', '1', '5', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1169', '1', '501', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1170', '1', '502', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1171', '1', '542', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1172', '1', '543', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1335', '10', '2', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1336', '10', '687', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1337', '10', '716', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1338', '10', '717', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1339', '10', '637', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1340', '10', '639', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1341', '10', '640', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1342', '10', '641', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1343', '10', '642', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1344', '10', '645', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1345', '10', '649', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1346', '10', '650', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1347', '10', '652', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1348', '10', '651', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1349', '10', '653', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1350', '10', '654', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1351', '10', '655', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1352', '10', '657', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1456', '9', '2', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1457', '9', '687', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1458', '9', '717', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1459', '9', '716', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1460', '9', '718', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1461', '9', '715', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1462', '9', '719', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1463', '9', '723', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1464', '9', '690', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1465', '9', '597', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1466', '9', '689', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1467', '9', '681', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1468', '9', '9', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1469', '9', '725', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1470', '9', '705', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1471', '9', '728', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1472', '9', '727', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1473', '9', '726', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1474', '9', '724', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1475', '9', '621', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1476', '9', '666', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1477', '9', '730', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1478', '9', '729', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1479', '9', '669', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1480', '9', '668', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1481', '9', '667', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1482', '9', '676', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1483', '9', '678', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1484', '9', '677', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1485', '9', '679', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1486', '9', '631', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1487', '9', '648', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1488', '9', '658', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1489', '9', '632', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1490', '9', '633', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1491', '9', '634', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1492', '9', '635', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1493', '9', '622', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1494', '9', '624', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1495', '9', '625', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1496', '9', '626', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1497', '9', '627', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1498', '9', '660', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1499', '9', '661', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1500', '9', '662', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1501', '9', '663', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1502', '9', '693', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1503', '9', '694', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1504', '9', '695', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1505', '9', '696', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1506', '9', '697', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1507', '9', '721', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1508', '9', '720', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1509', '9', '699', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1510', '9', '702', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1511', '9', '701', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1512', '9', '731', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1513', '9', '637', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1514', '9', '638', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1515', '9', '639', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1516', '9', '640', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1517', '9', '641', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1518', '9', '642', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1519', '9', '646', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1520', '9', '649', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1521', '9', '650', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1522', '9', '652', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1523', '9', '651', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1524', '9', '653', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1525', '9', '654', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1526', '9', '655', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1527', '9', '657', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1528', '9', '645', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1529', '9', '647', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1530', '9', '623', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1531', '9', '628', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1532', '9', '629', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1533', '9', '630', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1534', '9', '713', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1535', '9', '611', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1536', '9', '612', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1537', '9', '613', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1538', '9', '614', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1539', '9', '616', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1540', '9', '617', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1541', '9', '618', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1542', '9', '619', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1543', '9', '714', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1544', '9', '732', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1545', '9', '722', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1546', '9', '105', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1547', '9', '544', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1548', '9', '526', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1549', '9', '5', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1550', '9', '502', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1551', '9', '501', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1552', '9', '543', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1553', '9', '542', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1554', '7', '722', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1555', '7', '105', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1556', '7', '544', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1557', '7', '526', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1558', '5', '2', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1559', '5', '687', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1560', '5', '717', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1561', '5', '716', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1562', '5', '718', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1563', '5', '715', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1564', '5', '719', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1565', '5', '597', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1566', '5', '689', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1567', '5', '681', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1568', '5', '725', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1569', '5', '705', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1570', '5', '728', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1571', '5', '727', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1572', '5', '726', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1573', '5', '724', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1574', '5', '621', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1575', '5', '666', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1576', '5', '730', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1577', '5', '729', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1578', '5', '669', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1579', '5', '668', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1580', '5', '667', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1581', '5', '676', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1582', '5', '678', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1583', '5', '677', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1584', '5', '679', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1585', '5', '5', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1586', '5', '502', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1587', '5', '501', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1588', '5', '543', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1589', '5', '542', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1590', '4', '2', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1591', '4', '723', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1592', '4', '690', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1593', '4', '631', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1594', '4', '648', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1595', '4', '658', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1596', '4', '632', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1597', '4', '633', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1598', '4', '634', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1599', '4', '635', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1600', '4', '622', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1601', '4', '624', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1602', '4', '625', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1603', '4', '626', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1604', '4', '627', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1605', '4', '660', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1606', '4', '661', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1607', '4', '662', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1608', '4', '663', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1609', '4', '693', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1610', '4', '694', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1611', '4', '695', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1612', '4', '696', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1613', '4', '697', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1614', '4', '721', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1615', '4', '720', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1616', '4', '699', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1617', '4', '702', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1618', '4', '701', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1619', '4', '731', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1620', '4', '7', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1621', '4', '637', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1622', '4', '638', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1623', '4', '639', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1624', '4', '640', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1625', '4', '641', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1626', '4', '642', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1627', '4', '646', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1628', '4', '649', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1629', '4', '650', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1630', '4', '652', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1631', '4', '651', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1632', '4', '653', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1633', '4', '654', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1634', '4', '655', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1635', '4', '657', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1636', '4', '645', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1637', '4', '713', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1638', '4', '611', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1639', '4', '612', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1640', '4', '613', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1641', '4', '614', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1642', '4', '616', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1643', '4', '617', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1644', '4', '618', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1645', '4', '619', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1646', '4', '714', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1647', '4', '732', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1648', '4', '5', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1649', '4', '502', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1650', '4', '501', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1651', '4', '543', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1652', '4', '542', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1653', '2', '2', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1654', '2', '687', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1655', '2', '597', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1656', '2', '689', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1657', '2', '621', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1658', '2', '666', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1659', '2', '730', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1660', '2', '729', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1661', '2', '669', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1662', '2', '668', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1663', '2', '667', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1664', '2', '676', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1665', '2', '678', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1666', '2', '677', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1667', '2', '679', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1668', '2', '5', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1669', '2', '502', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1670', '2', '501', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1671', '2', '543', null, null, null);
+INSERT INTO `fanyun_admin_access` VALUES ('1672', '2', '542', null, null, null);
+
+-- ----------------------------
+-- Table structure for fanyun_admin_menus
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_admin_menus`;
+CREATE TABLE `fanyun_admin_menus` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `pid` int(11) NOT NULL,
+  `path` char(60) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'URL',
+  `name` char(50) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '节点的名字',
+  `display` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1为显示为菜单,0则不显示',
+  `sort` int(11) NOT NULL DEFAULT '1' COMMENT '排序',
+  `level` tinyint(4) NOT NULL DEFAULT '1' COMMENT '第几级菜单',
+  `ico` char(20) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '菜单图标',
+  `mark` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '备注',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`),
+  KEY `idx_deleted_at` (`deleted_at`)
+) ENGINE=InnoDB AUTO_INCREMENT=733 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+
+-- ----------------------------
+-- Records of fanyun_admin_menus
+-- ----------------------------
+INSERT INTO `fanyun_admin_menus` VALUES ('1', '0', '#', '平台管理', '1', '0', '1', 'fa fa-globe', '', '2017-01-01 00:00:00', '2019-04-30 18:53:21', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('2', '0', '#', '用户管理', '1', '99', '1', 'fa fa-users', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('5', '0', '#', '公共权限', '0', '0', '1', 'fa-cart-plus', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('6', '0', '#', '缓存管理', '0', '94', '1', 'fa-magic', '', '2017-01-01 00:00:00', '2018-09-28 17:27:12', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('7', '0', '#', '数据报表', '0', '96', '1', 'fa-globe', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('9', '681', 'Album/Manufacturer/index', '系统设置(全部)', '0', '98', '2', 'fa fa-cogs', '参数设置', '2017-01-04 18:32:17', '2019-06-06 15:16:20', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('103', '1', 'Base/Menus/index', '菜单管理', '1', '0', '1', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('104', '722', 'Base/Role/index', '角色管理', '1', '0', '2', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('105', '722', 'Base/User/index', '账号管理', '1', '0', '2', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('501', '5', 'Base/Index/index', '首页(必选)', '0', '0', '2', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('502', '5', 'Base/Index/welcome', '欢迎页', '0', '0', '1', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('519', '103', 'Base/Menus/create', '添加菜单', '0', '0', '3', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('520', '103', 'Base/Menus/update', '修改菜单', '0', '0', '3', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('521', '103', 'Base/Menus/destroy', '删除菜单', '0', '0', '3', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('522', '104', 'Base/Role/create', '添加角色', '0', '0', '3', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('523', '104', 'Base/Role/update', '修改角色', '0', '0', '3', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('524', '104', 'Base/Role/auth', '角色授权', '0', '0', '3', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('525', '104', 'Base/Role/destroy', '删除角色', '0', '0', '3', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('526', '105', 'Base/User/update', '编辑用户', '0', '0', '3', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('542', '5', 'Foundation/Attachment/webupload', '文件上传', '0', '0', '2', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('543', '5', 'Base/Attachment/upload', '编辑器上传', '0', '0', '2', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('544', '105', 'Base/User/auth', '为用户授权', '0', '1', '3', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('578', '1', 'Base/Crud/create', 'Crud', '1', '0', '1', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('579', '6', 'Cache/File/clearcache', '清空缓存', '1', '0', '1', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('580', '6', 'Cache/File/clearview', '清空模板缓存', '1', '0', '1', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('581', '6', 'Cache/File/clearsessions', '强制在线用户下线', '1', '0', '1', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('582', '6', 'Cache/File/index', '文件管理', '1', '0', '1', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('583', '6', 'Cache/File/view', '文件查看', '0', '0', '1', '', '', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('597', '2', 'Album/User/albumIndex', '画册用户', '1', '1', '2', '', '', '2017-04-05 06:39:13', '2019-05-29 14:47:54', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('609', '1', 'Base/Photos/index', '图片管理', '1', '1', '2', '', '图片管理', '2017-08-02 06:43:20', '2017-08-02 06:43:21', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('611', '713', 'Album/Nav/index', '导航栏设置', '1', '99', '2', '', '导航栏设置', '2018-09-28 17:53:22', '2018-09-28 17:53:22', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('612', '611', 'Album/Nav/create', '添加', '0', '99', '3', '', '添加', '2018-09-28 17:54:48', '2018-09-28 17:54:48', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('613', '611', 'Album/Nav/update', '修改', '0', '98', '3', '', '修改', '2018-09-28 17:55:27', '2018-09-28 17:55:27', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('614', '611', 'Album/Nav/destroy', '删除', '0', '97', '3', '', '删除', '2018-09-28 17:56:10', '2018-09-28 17:56:10', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('616', '713', 'Album/Banner/index', '轮播图列表', '1', '99', '2', '', '轮播图列表', '2018-09-28 17:57:52', '2018-09-28 17:57:52', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('617', '616', 'Album/Banner/create', '添加', '0', '99', '3', '', '添加', '2018-09-28 17:58:51', '2018-09-28 17:58:51', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('618', '616', 'Album/Banner/update', '更新', '0', '98', '3', '', '更新', '2018-09-28 17:59:21', '2018-09-28 17:59:21', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('619', '616', 'Album/Banner/destroy', '删除', '0', '97', '3', '', '删除', '2018-09-28 18:00:05', '2018-09-28 18:00:05', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('621', '0', '#', '画册内容', '1', '97', '1', 'fa fa-archive', '新闻管理', '2018-09-28 18:05:50', '2018-09-28 18:05:50', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('622', '631', 'Album/News/index', '新闻列表', '1', '99', '2', '', '新闻列表', '2018-09-28 18:06:46', '2018-09-28 18:06:46', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('623', '647', 'Album/Comments/index', '评论列表', '1', '98', '2', '', '新闻评论', '2018-09-28 18:07:36', '2018-09-28 18:07:36', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('624', '622', 'Album/News/create', '添加', '0', '99', '3', '', '添加', '2018-09-28 18:08:53', '2018-09-28 18:08:53', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('625', '622', 'Album/News/update', '修改', '0', '98', '3', '', '修改', '2018-09-28 18:09:34', '2018-09-28 18:09:34', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('626', '622', 'Album/News/destroy', '删除', '0', '97', '3', '', '删除', '2018-09-28 18:10:13', '2018-09-28 18:10:13', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('627', '622', 'Album/News/view', '查看', '0', '96', '3', '', '查看', '2018-09-28 18:10:51', '2018-09-28 18:10:51', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('628', '623', 'Album/Comments/update', '回复', '0', '99', '3', '', '回复', '2018-09-28 18:11:42', '2018-09-28 18:11:42', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('629', '623', 'Album/Comments/destroy', '删除', '0', '98', '3', '', '删除', '2018-09-28 18:12:25', '2018-09-28 18:12:25', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('630', '623', 'Album/Comments/view', '查看', '0', '97', '3', '', '查看', '2018-09-28 18:14:06', '2018-09-28 18:14:06', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('631', '0', '#', '售后内容', '1', '96', '1', 'fa fa-folder', '产品管理', '2018-09-28 18:14:55', '2018-09-29 10:04:41', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('632', '631', 'Furniture/Goods/index', '首页产品', '1', '99', '2', '', '产品列表', '2018-09-28 18:15:38', '2018-09-28 18:15:38', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('633', '632', 'Furniture/Goods/create', '添加', '0', '99', '3', '', '添加', '2018-09-28 18:16:18', '2018-09-28 18:16:18', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('634', '632', 'Furniture/Goods/update', '修改', '0', '98', '3', '', '修改', '2018-09-28 18:16:40', '2018-09-28 18:16:40', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('635', '632', 'Furniture/Goods/destroy', '删除', '0', '97', '3', '', '删除', '2018-09-28 18:17:26', '2018-09-28 18:17:26', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('637', '0', '#', '售后订单', '1', '95', '1', 'fa fa-cart-plus', '订单管理', '2018-09-29 10:05:13', '2018-09-29 10:05:13', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('638', '637', 'Album/Order/index?status=0', '待审核', '1', '99', '2', '', '待审核', '2018-09-29 10:06:11', '2018-09-29 10:06:11', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('639', '637', 'Album/Order/index?status=1', '待生产', '1', '99', '2', '', '待生产', '2018-09-29 10:06:11', '2018-09-29 10:06:11', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('640', '637', 'Album/Order/index?status=2', '生产中', '1', '99', '2', '', '生产中', '2018-09-29 10:06:11', '2018-09-29 10:06:11', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('641', '637', 'Album/Order/index?status=3', '待发货', '1', '99', '2', '', '待发货', '2018-09-29 10:06:11', '2018-09-29 10:06:11', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('642', '637', 'Album/Order/index?status=4', '待收货', '1', '99', '2', '', '待收货', '2018-09-29 10:06:11', '2018-09-29 10:06:11', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('645', '637', 'Album/Order/index?status=5', '已签收', '1', '99', '2', '', '已签收', '2018-09-29 10:06:11', '2018-09-29 10:06:11', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('646', '637', 'Album/Order/index?expected=1', '逾期', '1', '99', '2', '', '逾期', '2018-09-29 10:06:11', '2018-09-29 10:06:11', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('647', '0', '#', '评论管理', '1', '94', '1', 'fa fa-comments', '评论管理', '2018-09-29 10:10:26', '2018-09-29 10:10:26', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('648', '631', 'Album/Review/index', '评论列表', '1', '99', '2', '', '评论列表', '2018-09-29 10:11:15', '2018-09-29 10:11:15', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('649', '637', 'Album/Order/index', '订单列表', '0', '99', '2', '', '订单列表', '2018-09-29 10:15:08', '2018-09-29 10:15:08', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('650', '649', 'Album/Order/create', '添加', '0', '99', '3', '', '添加', '2018-09-29 10:15:41', '2018-09-29 10:15:41', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('651', '649', 'Album/Order/picture', '查看订单图片', '0', '97', '1', '', '查看订单图片', '2018-09-29 10:18:15', '2018-09-29 10:18:15', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('652', '649', 'Album/Order/view', '查看订单', '0', '98', '3', '', '查看订单', '2018-09-29 10:19:40', '2018-09-29 10:19:40', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('653', '649', 'Album/Order/check', '打印', '0', '96', '3', '', '打印', '2018-09-29 10:20:34', '2018-09-29 10:20:34', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('654', '649', 'Album/Order/status', '通过审核', '0', '95', '3', '', '通过审核', '2018-09-29 10:25:45', '2018-09-29 10:25:45', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('655', '649', 'Album/Order/addecomment', '添加备注', '0', '94', '3', '', '添加备注', '2018-09-29 10:26:52', '2018-09-29 10:26:52', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('657', '649', 'Album/Order/getpic', '获取图片', '0', '94', '3', '', '添加备注', '2018-09-29 10:26:52', '2018-09-29 10:26:52', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('658', '648', 'Album/Review/picture', '评论图片', '0', '98', '2', '', '评论图片', '2018-09-29 10:30:00', '2019-04-28 17:05:11', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('660', '631', 'Album/Product/Attr/index', '产品属性', '1', '99', '2', '', '属性列表', '2018-09-29 10:43:00', '2018-09-29 10:43:00', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('661', '660', 'Album/Product/Attr/create', '添加', '0', '99', '3', '', '添加', '2018-09-29 10:43:43', '2018-09-29 10:43:43', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('662', '660', 'Album/Product/Attr/update', '更新', '0', '98', '3', '', '更新', '2018-09-29 10:44:14', '2018-09-29 10:44:14', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('663', '660', 'Album/Product/Attr/destroy', '删除', '0', '97', '3', '', '删除', '2018-09-29 10:45:09', '2018-09-29 10:45:09', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('666', '621', 'Album/Cat/index', '画册分类', '1', '99', '2', '', '分类管理', '2018-09-29 10:47:33', '2018-09-29 10:47:33', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('667', '666', 'Album/Cat/create', '添加', '0', '99', '3', '', '添加', '2018-09-29 10:48:16', '2018-09-29 10:48:16', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('668', '666', 'Album/Cat/update', '修改', '0', '99', '3', '', '修改', '2018-09-29 10:48:16', '2018-09-29 10:48:16', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('669', '666', 'Album/Cat/destroy', '删除', '0', '99', '3', '', '删除', '2018-09-29 10:48:16', '2018-09-29 10:48:16', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('676', '621', 'Album/Product/index', '画册产品', '1', '97', '2', '', '产品管理', '2018-09-29 10:53:12', '2018-09-29 10:53:12', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('677', '676', 'Album/Product/create', '添加', '0', '99', '1', '', '添加', '2018-09-29 10:53:36', '2018-09-29 10:53:36', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('678', '676', 'Album/Product/update', '更新', '0', '99', '1', '', '更新', '2018-09-29 10:53:36', '2018-09-29 10:53:36', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('679', '676', 'Album/Product/destroy', '删除', '0', '99', '1', '', '删除', '2018-09-29 10:53:36', '2018-09-29 10:53:36', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('681', '0', '#', '画册设置', '1', '98', '1', 'fa fa-gears', '画册设置', '2018-09-29 10:55:29', '2018-09-29 10:55:29', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('687', '2', 'Album/Agent/index', '经销商列表', '1', '98', '2', '', '经销商列表', '2018-09-29 10:58:32', '2018-09-29 10:58:32', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('689', '597', 'Album/User/update', '设为经销商', '0', '99', '3', '', '设为经销商', '2018-09-29 10:59:12', '2019-04-26 17:44:26', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('690', '723', 'Album/User/role', '修改用户权限', '0', '99', '3', '', '修改用户权限', '2018-09-29 10:59:12', '2019-05-29 14:50:14', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('693', '631', 'Furniture/Newgoods/Info/index', '新品列表', '1', '1', '1', '', '', '2018-12-20 10:09:42', '2018-12-20 10:09:42', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('694', '693', 'Furniture/Newgoods/Info/create', '添加', '0', '1', '1', '', '', '2018-12-20 10:09:42', '2018-12-20 10:09:42', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('695', '693', 'Furniture/Newgoods/Info/update', '修改', '0', '1', '1', '', '', '2018-12-20 10:09:42', '2018-12-20 10:09:42', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('696', '693', 'Furniture/Newgoods/Info/destroy', '删除', '0', '1', '1', '', '', '2018-12-20 10:09:42', '2018-12-20 10:09:42', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('697', '693', 'Furniture/Newgoods/Info/view', '查看', '0', '1', '1', '', '', '2018-12-20 10:09:42', '2018-12-20 10:09:42', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('699', '631', 'Furniture/Newgoods/Comment/index', '新品评价', '1', '1', '1', '', '', '2018-12-20 10:15:04', '2018-12-20 10:15:04', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('701', '699', 'Furniture/Newgoods/Comment/update', '修改', '0', '1', '1', '', '', '2018-12-20 10:15:04', '2018-12-20 10:15:04', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('702', '699', 'Furniture/Newgoods/Comment/destroy', '删除', '0', '1', '1', '', '', '2018-12-20 10:15:04', '2018-12-20 10:15:04', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('705', '681', 'Album/Poster/index', '画册海报', '1', '1', '2', '', '', '2019-03-04 13:38:57', '2019-05-30 10:53:47', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('711', '1', 'Album/Manufacturer/list', '厂家管理', '1', '100', '1', '', '厂家管理', '2019-03-20 09:28:39', '2019-03-20 09:29:12', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('712', '711', 'Album/Manufacturer/destory', '厂家删除', '0', '1', '3', '', '1', '2019-03-20 10:01:30', '2019-03-20 10:01:30', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('713', '0', '#', '售后设置', '1', '1', '1', 'fa fa-coffee', '售后设置', '2019-04-26 14:47:52', '2019-04-26 14:47:52', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('714', '713', 'Album/Manufacturer/furnitureSystem', '系统设置', '1', '1', '2', '', '', '2019-04-26 17:24:04', '2019-05-30 19:40:26', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('715', '687', 'Album/User/role-boss', '设为Boss', '0', '0', '3', '', '设为Boss', '2019-04-26 18:00:06', '2019-05-16 14:30:50', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('716', '687', 'Album/Agent/update', '修改', '0', '0', '3', '', 'Album/Agent/update', '2019-04-26 18:00:57', '2019-04-26 18:00:57', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('717', '687', 'Album/Agent/status', '审核经销商', '0', '0', '3', '', '审核经销商', '2019-04-26 18:01:48', '2019-04-26 18:01:48', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('718', '687', 'Album/Agent/destroy', '删除经销商', '0', '0', '3', '', '删除经销商', '2019-04-26 18:02:22', '2019-04-26 18:02:22', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('719', '687', 'Album/Product/Price/index', '查看报价', '0', '0', '3', '', '查看报价', '2019-04-26 18:03:02', '2019-04-26 18:03:02', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('720', '693', 'Furniture/Newgoods/Info/commentschart', '评价统计', '0', '0', '3', '', '评价统计', '2019-04-28 16:24:44', '2019-04-28 16:24:44', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('721', '693', 'Furniture/Newgoods/Info/booking', '预售', '0', '1', '3', '', '预售', '2019-04-28 16:25:22', '2019-04-28 16:25:22', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('722', '0', '#', '系统管理', '1', '1', '1', 'fa fa-sliders', '系统管理', '2019-04-28 16:40:30', '2019-04-28 16:40:30', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('723', '2', 'Album/User/furnitureIndex', '售后用户', '1', '3', '2', '', '1', '2019-05-29 14:49:15', '2019-05-29 14:49:39', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('724', '681', 'Album/Manufacturer/platform', '平台设置', '1', '1', '2', '', '平台设置', '2019-05-29 16:00:17', '2019-05-29 16:00:17', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('725', '681', 'Album/Manufacturer/albumSystem', '系统设置', '1', '2', '2', '', '系统设置', '2019-05-29 16:01:56', '2019-05-29 16:01:56', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('726', '705', 'Album/Poster/create', '海报添加', '0', '11', '3', '', '海报添加', '2019-05-30 10:54:50', '2019-05-30 10:54:50', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('727', '705', 'Album/Poster/update', '海报修改', '0', '11', '3', '', '海报修改', '2019-05-30 10:55:24', '2019-05-30 10:55:24', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('728', '705', 'Album/Poster/destory', '删除', '0', '22', '3', '', '删除', '2019-05-30 10:56:14', '2019-05-30 10:56:14', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('729', '666', 'Album/Cat/createFirst', '创建一级', '0', '100', '3', '', '创建一级', '2019-05-30 17:59:53', '2019-05-30 17:59:53', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('730', '666', 'Album/Cat/updateFirst', '修改一级', '0', '111', '3', '', '修改一级', '2019-05-30 18:00:40', '2019-05-30 18:00:40', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('731', '699', 'Furniture/Newgoods/Comment/view', '查看', '0', '0', '3', '', '查看', '2019-05-30 19:05:53', '2019-05-30 19:05:53', null);
+INSERT INTO `fanyun_admin_menus` VALUES ('732', '713', 'Album/Manufacturer/furniturePlatform', '平台设置', '1', '0', '2', '', '平台设置', '2019-05-30 19:41:09', '2019-05-30 19:41:09', null);
+
+-- ----------------------------
+-- Table structure for fanyun_admin_operate_logs
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_admin_operate_logs`;
+CREATE TABLE `fanyun_admin_operate_logs` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `user_id` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
+  `operator` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
+  `url` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL,
+  `method` char(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'GET',
+  `request_data` text COLLATE utf8mb4_unicode_ci NOT NULL,
+  `md5` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+
+-- ----------------------------
+-- Records of fanyun_admin_operate_logs
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_admin_roles
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_admin_roles`;
+CREATE TABLE `fanyun_admin_roles` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `name` char(20) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '角色名称',
+  `mark` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '备注',
+  `status` int(11) NOT NULL DEFAULT '1' COMMENT '是否禁用',
+  `level` smallint(6) NOT NULL COMMENT '用户组等级,低等级的不能对高等级的用户做修改',
+  `department_id` char(32) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '部门ID',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `is_root` int(10) unsigned DEFAULT '0',
+  PRIMARY KEY (`id`),
+  KEY `idx_deleted_at` (`deleted_at`)
+) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+
+-- ----------------------------
+-- Records of fanyun_admin_roles
+-- ----------------------------
+INSERT INTO `fanyun_admin_roles` VALUES ('1', '售后客服', '补件审核', '1', '2', '', '2018-04-04 09:40:05', '2019-04-10 11:00:07', null, '0');
+INSERT INTO `fanyun_admin_roles` VALUES ('2', '画册客服', '画册', '1', '2', '', '2018-09-29 13:42:41', '2019-04-09 11:22:58', null, '0');
+INSERT INTO `fanyun_admin_roles` VALUES ('4', '售后管理', '售后管理', '1', '1', '', '2019-03-19 16:32:32', '2019-05-15 16:15:33', null, '1');
+INSERT INTO `fanyun_admin_roles` VALUES ('5', '画册管理', '管理画册', '1', '2', '', '2019-04-11 08:58:28', '2019-04-11 08:58:28', null, '0');
+INSERT INTO `fanyun_admin_roles` VALUES ('6', '平台管理', '平台管理', '1', '1', '', '2019-04-15 11:18:56', '2019-04-28 16:59:08', null, '1');
+INSERT INTO `fanyun_admin_roles` VALUES ('7', '系统管理', '系统管理', '1', '2', '', '2019-04-28 17:00:21', '2019-04-28 17:00:21', null, '0');
+INSERT INTO `fanyun_admin_roles` VALUES ('9', '管理员', '管理员', '1', '1', '', '2019-05-16 19:48:53', '2019-05-16 19:48:53', null, '1');
+INSERT INTO `fanyun_admin_roles` VALUES ('10', '直营店管理', '直营店', '1', '3', '', '2019-05-31 06:10:03', '2019-05-31 06:13:08', null, '1');
+
+-- ----------------------------
+-- Table structure for fanyun_admin_users
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_admin_users`;
+CREATE TABLE `fanyun_admin_users` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户ID',
+  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '用户名',
+  `real_name` char(20) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '实名',
+  `password` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '密码',
+  `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
+  `email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'EMAIL',
+  `mobile` char(11) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '手机号',
+  `avatar` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '用户头像',
+  `type` tinyint(4) NOT NULL COMMENT '类型,0:用户,1:员工',
+  `last_login_time` datetime DEFAULT NULL COMMENT '最后一次登录时间',
+  `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态,1启用0禁用',
+  `is_root` tinyint(4) DEFAULT NULL COMMENT '是否是超级管理员',
+  `admin_role_id` text COLLATE utf8mb4_unicode_ci COMMENT '角色',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `store_id` int(11) DEFAULT '1' COMMENT '站点ID',
+  PRIMARY KEY (`id`),
+  KEY `idx_deleted_at` (`deleted_at`)
+) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+
+-- ----------------------------
+-- Records of fanyun_admin_users
+-- ----------------------------
+INSERT INTO `fanyun_admin_users` VALUES ('1', 'admin', '超级管理员', '$2y$10$GF3fZGCMs7bNKhvIQ9agTuMIGD.slxr3KE8CqO/jjEEdIb6ZvXBxi', 'AO4ppIDxn5aKO5EETAWNaQrtrCzpKxC1bp8Zg0b3QDx7kNQ08AF7WfA3m2Na', 'root', '13800138000', 'http://webimg-handle.liweijia.com/upload/avatar/avatar_0.jpg', '0', '2017-03-21 11:04:36', '1', '1', null, '2017-01-01 00:00:00', '2019-04-06 16:13:00', null, '1');
+INSERT INTO `fanyun_admin_users` VALUES ('2', 'admin2', 'user1', '$2y$10$LSbqrlfgIf/uDoqwEsmYWufOf1m1LuM7r7Be3h4xojkGaMa67kgJ2', 'yeMvnHDFyInudatItr8ueMYiaxCK5OHbFDp5P9pxBU5CggZjnNJu68spooiT', 'user1@163.com', '123456', 'http://webimg-handle.liweijia.com/upload/avatar/avatar_0.jpg', '0', null, '1', null, '4', null, '2019-03-19 16:43:42', null, '2');
+INSERT INTO `fanyun_admin_users` VALUES ('3', 'user1', '', '$2y$10$ChHXe4iI0bwc4hWG1dhnPegO4H1hSoGbVmGLqhcKqN589XPQqyOOi', 'ImsSZOw57vUtKgoxaqKWFnrUoNeQ6swkrJOB8zisEALjolewzUoZ3wyGQ7cd', 'user1@qq.com', '18380257015', '', '0', null, '1', null, '1', '2018-09-29 13:45:12', '2019-04-09 11:20:32', null, '1');
+INSERT INTO `fanyun_admin_users` VALUES ('15', 'yuntuce', 'yuntuce', '$2y$10$pF1Hd1VRSq4zUw.4kINxRuRAwPQ17Q/.KjeHqBkHWrqE.CAFLB1Va', 'kvoUaUmpSZPyuZsG8xkCUMANb1OPujYcSNWwSSE5Sf29tZwKvasLbr8PW6Vs', 'lcjj18981786129@qq.com', '11111', '', '0', null, '1', null, '5', '2019-04-03 18:08:52', '2019-05-07 13:24:16', null, '3');
+INSERT INTO `fanyun_admin_users` VALUES ('17', 'zmsy', 'zmsy', '$2y$10$Vn0B0aCsvpZY1TbFsfgnSOD1WPVcz7KGxEYlCKF5N4M/PUYpccjf2', '5Ps7vRTjGqpkp3OnIr3r50MtySVPOucac1XbGHpedXhmUdvj36waeIbbCy5D', '314408198@qq.com', '4444', '', '0', null, '1', null, '4', '2019-04-04 10:35:47', '2019-04-08 13:44:54', null, '4');
+INSERT INTO `fanyun_admin_users` VALUES ('18', 'shuguang', 'shuguang', '$2y$10$v9nv79MhXdaJqBfIG6BVquOziBqY3t36PCaTP57fmcUbzTTXimudG', '0IU6wovwggXbs7weDLBAM5BFRBE98UKmTd3DDlLvXogbKje6VJIIVd2nTLyv', '3515142160@qq.com', '55555', '', '0', null, '1', null, '5', '2019-04-04 15:31:07', '2019-04-28 17:07:01', null, '5');
+INSERT INTO `fanyun_admin_users` VALUES ('21', 'yijubao', '亿居宝', '$2y$10$eVXztmerPIK815i7LIwc0.kFdSq8u4J093QYctoxmXz0gwYPC5TBq', '2YrLx8bmuMCMEnaNwnSu8qIJQokO1Ygb47tErHzNhYHVGpApIYRYahYQuLlY', '446710623@qq.com', '66666666', '', '0', null, '1', null, '4', '2019-04-10 14:08:59', '2019-04-10 14:08:59', null, '6');
+INSERT INTO `fanyun_admin_users` VALUES ('22', 'yjbadmin', 'yjbadmin', '$2y$10$XM8eF7KsqxXbgktdC.qva./gPb9YaJy/d5It7VX6QnHU9WnN.jwU6', 'iCGfqzJyLkDToMmFW94CaDz2MH7B7RmKxS47RSB8lbL1kLDd5jmyX9rnHtq5', '446710623', '66666', '', '0', null, '1', null, '2,5', '2019-04-11 08:53:02', '2019-04-11 09:01:30', null, '6');
+INSERT INTO `fanyun_admin_users` VALUES ('23', 'test1', 'yu', '$2y$10$.9pB586DCF8MtAUwSP8hbu24JFurD8p4vjiIiF6KdihkH.8yZfJeW', '4AJs2XLTxG1jxYbKYZ2sUDSkhBIRe351ojKLok6WQ4udizXpZmMGo4SzJnCu', '123', '123', '', '0', null, '1', null, '4', '2019-04-15 13:47:06', '2019-04-15 13:47:06', null, '6');
+INSERT INTO `fanyun_admin_users` VALUES ('24', 'test2', 'test2', '$2y$10$RdzNr1Y1WdQWSkLDpXMeXu5hlSKPTpIkHbfcl90Fcmz6B06Os1CZG', '8zm2ALnsEAkpPtQcVJ5jkXYNwJLR4YHxicfKBIF80mAiAKk8bKwtjR0Bqtu2', '1234', '1234', '', '0', null, '1', null, '1', '2019-04-15 13:51:00', '2019-04-15 13:51:00', null, '1');
+INSERT INTO `fanyun_admin_users` VALUES ('25', 'test3', 'test3', '$2y$10$J1GqkDqd/1rAbLSzMsKRuuTTV8T3BnAa8tLjXe5SlC0vn6xzqR6NG', 'E8IwY8V3A5ZM8I6rvCcLdBqVwZXq876ztuuDFLz2cczA4ohNHQMnndlH6uvo', '12345', '12345', '', '0', null, '1', null, '2', '2019-04-15 13:51:41', '2019-04-15 13:51:41', null, '1');
+INSERT INTO `fanyun_admin_users` VALUES ('26', 'msjj', 'msjj', '$2y$10$u7PH4l6nW.G7bjSQxHtkEesPT.aSHAxzHy2JFzP0azxSOwHfcPJWa', 'PvI8Vo32raAmn8l3kIJSmW5Awri3Z2ZdOJ20idGqyqmHRsoNTrclJoKxcVZ6', '3469328802@qq.com', '13512345678', '', '0', null, '1', null, '5', '2019-04-18 10:49:58', '2019-04-19 15:12:49', null, '8');
+INSERT INTO `fanyun_admin_users` VALUES ('27', 'xunhe', 'xunhe', '$2y$10$byGZKrDjW0UPn6DtJZmPgu8htAUv9cPyAp/Qfe8T1QIs/ffec10NW', 'QHvbn78IGR3IF6A5Zodu7urKga6VJ2ct1HOyuAaE7YGxY5Oq94Dh617c83LG', '13699481769@163.com', '13510101010', '', '0', null, '1', null, '5', '2019-04-29 16:13:58', '2019-04-29 16:13:58', null, '10');
+INSERT INTO `fanyun_admin_users` VALUES ('28', 'chabaji', 'chabaji', '$2y$10$pM.DNwKHscMS3k7GqQzPXeWtIswy.ifDYAYKHtaIRxSjFtZ.t4R.m', 'a19Oq8sbVuil38a1BfvluHVym3qdQkfBVRZuCN1TNssBkmZcxzND6ZsHVcni', '2396183221@qq.com', '15111112222', '', '0', null, '1', null, '5', '2019-05-05 18:05:20', '2019-05-05 18:05:20', null, '15');
+INSERT INTO `fanyun_admin_users` VALUES ('30', 'niuniu', 'niuniu', '$2y$10$GtfDagE6HRYQ17cFZGcFW.lHOmmBn.q.lOLbRCN4MgrAf8B5U3ezW', null, '675203406@qq.com', '13587654321', '', '0', null, '1', null, '5', '2019-05-07 09:52:09', '2019-05-07 09:52:09', null, '12');
+INSERT INTO `fanyun_admin_users` VALUES ('31', 'zhineng', 'zhineng', '$2y$10$Gd2qXjfqks3XdK/68tTjcOZ31dYUflW5cMh94gU5bow6uPZY2/OSW', 'WJjRF68nYc0ZGXWq9FVk7oJZAYKJzX9aLf999vH7PSccpmEVOKVF0iTo6FbY', '3279613212@qq.com', '13500000000', '', '0', null, '1', null, '4', '2019-05-07 15:10:40', '2019-05-07 15:10:40', null, '15');
+INSERT INTO `fanyun_admin_users` VALUES ('32', 'shangjin', 'shangjin', '$2y$10$Hi5T04EbtHPCOgl5wJ1dM.QvZdbfMjSt4oaj7sadbkCphcT/Yulbm', 'JEKrWWbjJRx5Sq2Rad24u2Orz9Xa3IX3yTNoaHlIcKc9P60P5fZbP6nZbWvb', '657906597@qq.com', '13516161616', '', '0', null, '1', null, '5', '2019-05-09 09:21:30', '2019-05-09 09:21:30', null, '16');
+INSERT INTO `fanyun_admin_users` VALUES ('35', 'yyx217', 'yyx', '$2y$10$TR/xzn4GjIaB4vV6FwJgxeOnA.t3WnDFAhjbQblGKzmJCVmDK81ri', null, '501568624@qq.com', '15883113541', '', '0', null, '1', null, '4,6,8,1,2,5,7', '2019-05-16 09:42:01', '2019-05-16 09:42:01', null, '1');
+INSERT INTO `fanyun_admin_users` VALUES ('36', 'oyx', '欧阳鑫', '$2y$10$xGo6P86mTbR/pf7.BnGOi.bR2v2U10cFabRvavOu2VYGkG1RgCmG.', 'tQKboz1WXSkzMGRPFvoHs3jzmdsoytWCeEr3XT6FAO2v5wsq4Q3Ga8rGyYnz', '123456@qq.com', '17780017587', '', '0', null, '1', null, '1', '2019-05-21 17:20:34', '2019-05-21 17:27:25', null, '1');
+INSERT INTO `fanyun_admin_users` VALUES ('37', '13981869336j', '林姐', '$2y$10$NQGU/0dqpjOlhpAXekjAEehEvibpSd1Wm881CxTG4.guEsD6TamkK', '27rayCduR97JtuSNTl7Q43BFOIbazn6o2IabNjlfydbctXX9YzhK7CSqCCBq', '', '13981869336', '', '0', null, '1', null, '10', '2019-05-31 06:17:55', '2019-05-31 06:29:49', null, '1');
+INSERT INTO `fanyun_admin_users` VALUES ('38', '18080067186j', '陈', '$2y$10$NfhuYqq1Ae/kSic29VBGFOFjiClioyHG4gvcrV5jYwt9jdgxsFQbm', null, '', '18080067186', '', '0', null, '1', null, '10', '2019-05-31 06:34:24', '2019-05-31 06:35:23', null, '1');
+INSERT INTO `fanyun_admin_users` VALUES ('39', '18121959886j', '', '$2y$10$fVAEc01CCGhY8UpcxMwPOuDq6kOyFgSzmAnzv4rH/ua7PViPZXoZm', null, '', '18121959886', '', '0', null, '1', null, '10', '2019-05-31 06:36:31', '2019-05-31 06:36:31', null, '1');
+INSERT INTO `fanyun_admin_users` VALUES ('40', '13981869336c', '', '$2y$10$XLM52KvvQ7D74TBsdaqJbO9/f2R3N2bO.M/memwirw3E3ccMWqr3S', null, '', '', '', '0', null, '1', null, '10', '2019-05-31 06:37:51', '2019-05-31 06:37:51', null, '15');
+INSERT INTO `fanyun_admin_users` VALUES ('41', '18080067186c', '', '$2y$10$kEs9EBmbtgumiN3BbpNSu.T2KYoYLis8.p4Mh4In6Z8cgQq/e2gYK', null, '', '', '', '0', null, '1', null, '10', '2019-05-31 06:38:32', '2019-05-31 06:38:32', null, '15');
+INSERT INTO `fanyun_admin_users` VALUES ('42', '18121959886c', '', '$2y$10$vA9rjfXqf/IwIj8TXsXxsO/VUsiBIbd6XIIe9Hs4D0.sOfSpLdHtG', null, '', '', '', '0', null, '1', null, '10', '2019-05-31 06:39:09', '2019-05-31 06:39:09', null, '15');
+INSERT INTO `fanyun_admin_users` VALUES ('43', 'c', '', '$2y$10$H6G5ullVNcDRGkiAGjFeieXtOe.kQycZ3s1Ui2zgOJlc/fldYrWPG', 'EvgPUVZJWiDha7q8I1ejosfKTZ5gaJ9lTxxFgPa2s6tKmeEu3l3WOl6zXThu', '', '', '', '0', null, '1', null, '10', '2019-05-31 07:18:50', '2019-05-31 07:18:50', null, '15');
+INSERT INTO `fanyun_admin_users` VALUES ('44', 'j', '', '$2y$10$nbNZXUQ3Yu8VHUDIw.L9/ebgzCZkfDekigSdWQfSAdawld4Nh3Eh.', 'ftdLlMBp7aErEgGGPuoMwmkXpkBxQtHsuBVUQVollmPiS0h78fCxEdvEZyUP', '', '', '', '0', null, '1', null, '10', '2019-05-31 07:19:12', '2019-05-31 07:19:12', null, '1');
+INSERT INTO `fanyun_admin_users` VALUES ('45', 'roobe', 'roobe', '$2y$10$.fUVJrCEDxfxNthKeqzMHewhVTqyaBY4BTh9BUxGEFyqjaQzfvEvu', 'Cp848d8ubQfSTyy4cQdbh5H9DHVb6YrQ5ntY2e4fIwzZd9rKjjLcmgvDwSMu', '', '', '', '0', null, '1', '1', '1', '2019-06-04 20:56:38', '2019-06-04 20:56:38', null, '21386');
+INSERT INTO `fanyun_admin_users` VALUES ('47', 'shiyong', 'shiyong', '$2y$10$iv15R1nmC77IjJsfzhhwaeP2cxAyiVYeHAZIrRZcVdW60NeEDjoQC', '58HTZKDtxFb2AxqLmAR5sQm71E0rIXt1SIPhUqIu6l8Sss7trXCmqFKoTGyk', 'lcjj1898178619@qq.com', '18812356789', '', '0', null, '1', null, '5', '2019-06-05 13:28:33', '2019-06-05 13:28:33', null, '1');
+INSERT INTO `fanyun_admin_users` VALUES ('48', '18228068397', '18228068397', '$2y$10$RiQR4BeaeMWfhGv.rA4BUuBt4C0jMxAX3c2rX8PhJgTOguRuscIta', 'QWmLydN9uvypU5XzG5WgRibVOvD82sFH7aDj1pAL1TwG7MOXtDzyDxzE7q2I', '', '', '', '0', null, '1', null, '7', '2019-06-05 15:45:30', '2019-06-05 15:45:30', null, '21387');
+INSERT INTO `fanyun_admin_users` VALUES ('49', '15881188848', '15881188848', '$2y$10$tUpaFWjAvBgcbpzvVblNtuZqP15FnT2UA2DnU.W9IBK1JQxvc8bPW', 'O4VIKEwC9t0fdQveenI4BkZLLwGLs8W4vW91oUbpdqKO8rkxKBtbDtGvG16q', '', '', '', '0', null, '1', null, '7', '2019-06-06 10:00:45', '2019-06-06 10:00:45', null, '21393');
+INSERT INTO `fanyun_admin_users` VALUES ('50', '15881188848', '15881188848', '$2y$10$c5MXRL5wsV//uAvBJ8Zsbuda5axXuhhJol3SCspNNps.t9hU4L00S', null, '', '', '', '0', null, '1', null, '7', '2019-06-06 10:22:01', '2019-06-06 10:22:01', null, '21398');
+INSERT INTO `fanyun_admin_users` VALUES ('51', 'album17828477741', 'album17828477741', '$2y$10$sv1ZzXvPm.NC9s1fzVqkwOB5O6pbzc4RY5MDIh/hZ1sNUf5QlWNyK', 'cmmb9g2T37fxJcW7XbHsPNcEoJv3eExQwDvGgFVYhvb9VOPyhAg4rkZZY1Y0', '', '', '', '0', null, '1', null, '9', '2019-06-06 13:10:04', '2019-06-06 13:31:16', null, '21405');
+INSERT INTO `fanyun_admin_users` VALUES ('52', 'album17828477741', 'album17828477741', '$2y$10$pKfQqs914r9KzT9gVvHPSOZ9PWu/7IIOgxyJbVu6HX6AfD.qh961.', '261paQMIF8JpeabsBJW4EEYCvgHufeRVWQXE9nb9zHgq0u2MNbV9dfcLj93o', '', '', '', '0', null, '1', null, '9', '2019-06-06 16:45:13', '2019-06-06 16:45:13', null, null);
+INSERT INTO `fanyun_admin_users` VALUES ('53', 'albumroobe', 'albumroobe', '$2y$10$ze436096VT1D0R5z5v1AQenoEHrxCnRaIGK0J6qdApcNFpVBUiEvy', 'GvTg5tHn1Y0HnYGUfDsYyxJ4uNTC0uYDtnuLhrVkhax4SCQb3p8V1SWd93cd', '', '', '', '0', null, '1', '1', '9', '2019-06-06 16:49:07', '2019-06-06 16:49:07', null, null);
+INSERT INTO `fanyun_admin_users` VALUES ('54', 'album17828477741', 'album17828477741', '$2y$10$rswiSeSZNbkYUQOCjiHapuFG3MaEd8zn.tyapqeMtNtmGqo3Gk072', null, '', '', '', '0', null, '1', null, '9', '2019-06-06 16:53:01', '2019-06-06 16:53:01', null, '21406');
+
+-- ----------------------------
+-- Table structure for fanyun_agent_banner
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_agent_banner`;
+CREATE TABLE `fanyun_agent_banner` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `store_id` int(10) unsigned NOT NULL,
+  `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '路径',
+  `type` int(10) unsigned NOT NULL COMMENT '0 图片 1 视频',
+  `oss_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
+  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_agent_banner
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_agent_navbar_setting
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_agent_navbar_setting`;
+CREATE TABLE `fanyun_agent_navbar_setting` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `agent_id` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '代理商ID',
+  `new_target` tinyint(4) DEFAULT NULL COMMENT '是否新窗口打开:0:否;1:是',
+  `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'navbar标题',
+  `is_hidden` tinyint(4) NOT NULL COMMENT '是否隐藏',
+  `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '链接地址',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_agent_navbar_setting
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_agent
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_agent`;
+CREATE TABLE `fanyun_album_agent` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `store_id` int(10) unsigned NOT NULL,
+  `user_id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '用户ID',
+  `address` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '地址',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `name` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
+  `lon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
+  `lat` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
+  `phone` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '手机号',
+  `status` int(10) unsigned NOT NULL COMMENT '是否通过审核  0 否 1 是',
+  `realname` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '真实姓名',
+  `get_count` int(10) unsigned DEFAULT '0',
+  `share_times` int(10) unsigned DEFAULT '0' COMMENT '分享次數',
+  `is_show_ma_price` int(10) unsigned DEFAULT '0' COMMENT '0 不显示 1 显示',
+  `set_price_point` int(10) unsigned DEFAULT '0',
+  `pointCount` int(10) unsigned NOT NULL DEFAULT '0',
+  `newCount` int(10) unsigned NOT NULL DEFAULT '0',
+  `callCount` int(10) unsigned NOT NULL DEFAULT '0',
+  `favoriteCount` int(10) unsigned NOT NULL DEFAULT '0',
+  `interactive` int(10) unsigned DEFAULT '0',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=195 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_agent
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_banner
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_banner`;
+CREATE TABLE `fanyun_album_banner` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `store_id` int(11) NOT NULL COMMENT '商户id',
+  `pic_url` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '图标url',
+  `title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '标题',
+  `sort` int(10) unsigned NOT NULL COMMENT '排序',
+  `addtime` int(10) unsigned NOT NULL,
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_banner
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_cat
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_cat`;
+CREATE TABLE `fanyun_album_cat` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '名称',
+  `parent_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '父分类ID 0--顶级分类',
+  `pic_url` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '图片url',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `store_id` int(10) unsigned NOT NULL,
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `sort` int(10) unsigned NOT NULL COMMENT '排序',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=285 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_cat
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_comments
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_comments`;
+CREATE TABLE `fanyun_album_comments` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `store_id` int(10) unsigned NOT NULL,
+  `user_id` int(10) unsigned NOT NULL COMMENT '用户id',
+  `comments_id` int(11) NOT NULL COMMENT '评论ID 0--首条评论',
+  `content` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '评论内容',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `news_id` int(10) unsigned NOT NULL COMMENT '信息id',
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `sys_reply` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_comments
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_favorite
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_favorite`;
+CREATE TABLE `fanyun_album_favorite` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `user_id` int(10) unsigned NOT NULL COMMENT '用户ID',
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `product_id` int(10) unsigned NOT NULL,
+  `store_id` int(10) unsigned NOT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=277 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_favorite
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_form_id
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_form_id`;
+CREATE TABLE `fanyun_album_form_id` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `open_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'open_id',
+  `form_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'form_id',
+  `store_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'store_id',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=24997 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_form_id
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_manufacturer
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_manufacturer`;
+CREATE TABLE `fanyun_album_manufacturer` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `store_id` int(10) unsigned NOT NULL COMMENT '商户ID',
+  `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1' COMMENT '名称',
+  `illustrated_name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1' COMMENT '电子画报名称',
+  `avatar` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '头像链接',
+  `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '电话',
+  `address` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '地址',
+  `lng` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '经度',
+  `lat` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '纬度',
+  `advertising_pic` longtext COLLATE utf8mb4_unicode_ci COMMENT '广告图片',
+  `furniture_ads_pic` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '家具售后广告',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `xyx_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '小游戏ID',
+  `xyx_secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '小游戏秘钥',
+  `service_app_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '售后appid',
+  `service_app_secret` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '售后app_secret',
+  `goods_app_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '商品小程序appid',
+  `goods_app_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '商城小程序跳转url',
+  `print_no` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '打印机编号',
+  `print_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '打印机秘钥',
+  `print_type` tinyint(4) DEFAULT '1' COMMENT '打印机型号',
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `notice` text COLLATE utf8mb4_unicode_ci COMMENT '公告',
+  `show_notice` tinyint(4) DEFAULT '1' COMMENT '是否显示公告',
+  `notice_icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '公告图标',
+  `redirectapp` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '',
+  `getPhone` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '是否强制获取手机号',
+  `getFocus` int(10) unsigned DEFAULT '0' COMMENT '是否开启关注公众号',
+  `G_app_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '公众号appid',
+  `G_app_secret` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '公众号appsecret',
+  `is_audit` int(10) unsigned DEFAULT '0' COMMENT '0 应用版 1 过审版',
+  `banner` longtext COLLATE utf8mb4_unicode_ci COMMENT '初始页面banner',
+  `logo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'logo url',
+  `wxFurniture_template_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
+  `wxaccount_template_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
+  `share_title` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '分享标题',
+  `share_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '分享图片',
+  `qrcode` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
+  `circleOfFriends` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '朋友圈画报',
+  `introduce` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '个人二维码介绍语',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_manufacturer
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_nav
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_nav`;
+CREATE TABLE `fanyun_album_nav` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `store_id` int(11) NOT NULL COMMENT '商户号',
+  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '图标名称',
+  `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '''' COMMENT '页面路径',
+  `open_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '打开方式',
+  `pic_url` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '图标url',
+  `pic_url_active` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '选中后图片',
+  `sort` int(10) unsigned NOT NULL COMMENT '排序',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `mobile` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '电话号码',
+  `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '地址',
+  `app_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'App_id',
+  `state` int(10) unsigned NOT NULL,
+  `lon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
+  `lat` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_nav
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_news
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_news`;
+CREATE TABLE `fanyun_album_news` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `store_id` int(11) NOT NULL COMMENT '商户ID',
+  `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '标题',
+  `thumb` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '缩略图',
+  `content` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '内容',
+  `bad` int(11) NOT NULL DEFAULT '0' COMMENT '差评数',
+  `commonly` int(11) NOT NULL DEFAULT '0' COMMENT '一般数',
+  `like` int(11) NOT NULL DEFAULT '0' COMMENT '好评数',
+  `viewed` int(11) NOT NULL DEFAULT '0' COMMENT '浏览人数',
+  `sort` tinyint(4) NOT NULL COMMENT '排序:越大越靠前',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_news
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_order
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_order`;
+CREATE TABLE `fanyun_album_order` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `sno` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '订单号',
+  `qrcode` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '二维码',
+  `status` tinyint(4) NOT NULL COMMENT '订单状态:0:待审核;1:待生产;2:生产中;3:生产完成,待发货;4:运输中,待收货;5:已签收,待评价',
+  `category` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '产品分类',
+  `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '产品型号',
+  `color` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '产品颜色',
+  `picture` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '产品图片',
+  `question` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '问题描述',
+  `customer_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '用户姓名',
+  `customer_phone` varchar(11) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '联系方式',
+  `customer_address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '收货地址',
+  `user_id` int(11) DEFAULT NULL COMMENT '审核客服ID',
+  `verifier_id` int(11) NOT NULL,
+  `producer_id` int(11) DEFAULT NULL COMMENT '生产部员ID',
+  `packer_id` int(11) DEFAULT NULL COMMENT '包装部员ID',
+  `price` double(8,2) DEFAULT NULL COMMENT '费用',
+  `expected_time` date DEFAULT NULL COMMENT '预计完成时间',
+  `remark` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '客服备注',
+  `expected_comment` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '逾期备注',
+  `store_id` int(11) NOT NULL COMMENT '站点',
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`) USING BTREE
+) ENGINE=InnoDB AUTO_INCREMENT=300 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+
+-- ----------------------------
+-- Records of fanyun_album_order
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_parts
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_parts`;
+CREATE TABLE `fanyun_album_parts` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '配件名称',
+  `count` int(11) NOT NULL COMMENT '配件数量',
+  `order_id` int(11) NOT NULL COMMENT '订单号',
+  `store_id` int(11) NOT NULL COMMENT '店铺号',
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=151 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_parts
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_poster
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_poster`;
+CREATE TABLE `fanyun_album_poster` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `store_id` int(10) unsigned NOT NULL,
+  `posters` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '海报',
+  `words` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '话术',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `video_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '朋友圈视频',
+  `downloadNum` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '下载次数',
+  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '標題',
+  `share_type` int(10) unsigned DEFAULT '0',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_poster
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_product
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_product`;
+CREATE TABLE `fanyun_album_product` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `store_id` int(10) unsigned NOT NULL,
+  `cat_id` int(10) unsigned NOT NULL COMMENT '分类ID',
+  `specifications_img` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '规格 json字符串',
+  `style` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '风格',
+  `sort` int(10) unsigned NOT NULL COMMENT '排序',
+  `detail` longtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '产品详情',
+  `thumb` longtext COLLATE utf8mb4_unicode_ci COMMENT '缩略图',
+  `cover_pic` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '封面图片',
+  `hot_cake` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '是否促销 0不是 1是',
+  `news` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '最新上市 0不是 1是',
+  `install_img` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
+  `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
+  `detail_pic` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
+  `price_default` double(10,5) NOT NULL DEFAULT '0.00000',
+  `ma_price` decimal(8,2) DEFAULT '0.00' COMMENT '出厂价',
+  `ma_price_comment` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '出厂价备注',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `upload_video` longtext COLLATE utf8mb4_unicode_ci,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=598 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_product
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_product_attr
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_product_attr`;
+CREATE TABLE `fanyun_album_product_attr` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '属性名字',
+  `pid` int(11) NOT NULL COMMENT '父属性',
+  `attr_type` tinyint(4) NOT NULL COMMENT '属性类型:0:品类;1:型号;2:颜色',
+  `sort` int(11) DEFAULT NULL COMMENT '排序,越大越靠前',
+  `store_id` int(11) NOT NULL COMMENT '站点',
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=258 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_product_attr
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_product_price
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_product_price`;
+CREATE TABLE `fanyun_album_product_price` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `agent_id` int(10) unsigned NOT NULL,
+  `store_id` int(10) unsigned NOT NULL,
+  `product_id` int(10) unsigned NOT NULL,
+  `mobile` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '经销商电话',
+  `price` decimal(8,2) NOT NULL COMMENT '价格',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `cat_id` int(10) unsigned NOT NULL DEFAULT '0',
+  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=1373 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_product_price
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_product_style
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_product_style`;
+CREATE TABLE `fanyun_album_product_style` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `name` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '名称',
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `store_id` int(10) unsigned NOT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_product_style
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_progress
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_progress`;
+CREATE TABLE `fanyun_album_progress` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '进度文字',
+  `status` tinyint(4) NOT NULL COMMENT '订单状态',
+  `order_id` int(11) NOT NULL COMMENT '订单ID',
+  `store_id` varchar(24) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '站点ID',
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=936 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_progress
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_review
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_review`;
+CREATE TABLE `fanyun_album_review` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `verifier_review` tinyint(4) NOT NULL COMMENT '客服服务: 0:好评;1:中评;2:差评',
+  `producer_review` tinyint(4) NOT NULL COMMENT '产品质量: 0:好评;1:中评;2:差评',
+  `packer_review` tinyint(4) NOT NULL COMMENT '包装服务: 0:好评;1:中评;2:差评',
+  `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT '评论',
+  `picture` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '图片',
+  `order_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '订单号',
+  `store_id` int(11) NOT NULL COMMENT '站点',
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`) USING BTREE
+) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+
+-- ----------------------------
+-- Records of fanyun_album_review
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_statistical
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_statistical`;
+CREATE TABLE `fanyun_album_statistical` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `store_id` int(10) unsigned NOT NULL COMMENT 'store_id',
+  `share_times` int(10) unsigned NOT NULL COMMENT '分享次数',
+  `favorite_times` int(10) unsigned NOT NULL COMMENT '收藏次数',
+  `time` int(10) unsigned NOT NULL COMMENT '行为时间戳',
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=228 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_statistical
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_user
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_user`;
+CREATE TABLE `fanyun_album_user` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `username` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '名称',
+  `wechat_open_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '微信open_id',
+  `wechat_union_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '微信union_id',
+  `avatar` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '头像链接',
+  `store_id` int(10) unsigned NOT NULL COMMENT '商户号',
+  `is_dealer` int(10) unsigned NOT NULL COMMENT '是否为经销商',
+  `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '电话',
+  `role` tinyint(4) NOT NULL DEFAULT '0' COMMENT '角色:0:普通用户;1:生产部;2:包装部;3:经理',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `up_agent_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '临时agentid',
+  `model` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '用戶所屬模塊 0 家具 1画册',
+  `open_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'openid',
+  `g_open_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '微信公众号openid',
+  `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '地址',
+  `lng` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
+  `lat` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
+  `is_boss` int(10) unsigned DEFAULT '0',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=2473 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_user
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_watch_record
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_watch_record`;
+CREATE TABLE `fanyun_album_watch_record` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `agent_id` int(10) unsigned NOT NULL COMMENT '经销商id',
+  `open_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '客户openid',
+  `action` int(10) unsigned NOT NULL COMMENT '1 收藏  2查看类目 3查看商品 4登陆',
+  `detail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '详细',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `store_id` int(10) unsigned NOT NULL,
+  `is_new` int(10) unsigned DEFAULT '0',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=27055 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_watch_record
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_album_xyx_user
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_album_xyx_user`;
+CREATE TABLE `fanyun_album_xyx_user` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `username` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '名称',
+  `wechat_open_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '微信open_id',
+  `wechat_union_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '微信union_id',
+  `avatar` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '头像链接',
+  `store_id` int(10) unsigned NOT NULL COMMENT '商户号',
+  `xcx_id` int(10) unsigned NOT NULL COMMENT '关联小程序用户',
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `is_agent` int(10) unsigned NOT NULL,
+  `up_agent_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '经销商id',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_album_xyx_user
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_base_area
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_base_area`;
+CREATE TABLE `fanyun_base_area` (
+  `id` int(11) NOT NULL COMMENT '编号',
+  `name` char(50) NOT NULL COMMENT '名称',
+  `pid` int(11) NOT NULL DEFAULT '0' COMMENT '父级',
+  `short_name` char(50) NOT NULL COMMENT '简称',
+  `grade` tinyint(4) NOT NULL COMMENT '层级关系',
+  `city_code` smallint(4) NOT NULL COMMENT '区号',
+  `zip_code` int(11) NOT NULL COMMENT '邮编',
+  `merger_name` varchar(1024) NOT NULL COMMENT '关系值',
+  `lng` float NOT NULL COMMENT '精度',
+  `lat` float NOT NULL COMMENT '维度',
+  `pinyin` char(50) NOT NULL COMMENT '拼音',
+  `created_at` datetime NOT NULL COMMENT '创建时间',
+  `updated_at` datetime NOT NULL COMMENT '修改时间',
+  `deleted_at` datetime DEFAULT NULL COMMENT '删除时间',
+  PRIMARY KEY (`id`),
+  KEY `idx_pid` (`pid`),
+  KEY `idx_deleted_at` (`deleted_at`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='区域表';
+
+-- ----------------------------
+-- Records of fanyun_base_area
+-- ----------------------------
+INSERT INTO `fanyun_base_area` VALUES ('100000', '中国', '0', '中国', '0', '0', '0', '中国', '116.368', '39.9151', 'China', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('110100', '北京市', '100000', '北京', '1', '0', '0', '中国,北京市', '116.405', '39.905', 'Beijing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('110101', '东城区', '110100', '东城', '2', '10', '100010', '中国,北京市,东城区', '116.41', '39.9316', 'Dongcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('110102', '西城区', '110100', '西城', '2', '10', '100032', '中国,北京市,西城区', '116.36', '39.9305', 'Xicheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('110105', '朝阳区', '110100', '朝阳', '2', '10', '100020', '中国,北京市,朝阳区', '116.485', '39.9484', 'Chaoyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('110106', '丰台区', '110100', '丰台', '2', '10', '100071', '中国,北京市,丰台区', '116.286', '39.8585', 'Fengtai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('110107', '石景山区', '110100', '石景山', '2', '10', '100043', '中国,北京市,石景山区', '116.223', '39.9056', 'Shijingshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('110108', '海淀区', '110100', '海淀', '2', '10', '100089', '中国,北京市,海淀区', '116.298', '39.9593', 'Haidian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('110109', '门头沟区', '110100', '门头沟', '2', '10', '102300', '中国,北京市,门头沟区', '116.101', '39.9404', 'Mentougou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('110111', '房山区', '110100', '房山', '2', '10', '102488', '中国,北京市,房山区', '116.143', '39.7479', 'Fangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('110112', '通州区', '110100', '通州', '2', '10', '101149', '中国,北京市,通州区', '116.657', '39.9097', 'Tongzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('110113', '顺义区', '110100', '顺义', '2', '10', '101300', '中国,北京市,顺义区', '116.654', '40.1302', 'Shunyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('110114', '昌平区', '110100', '昌平', '2', '10', '102200', '中国,北京市,昌平区', '116.231', '40.2207', 'Changping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('110115', '大兴区', '110100', '大兴', '2', '10', '102600', '中国,北京市,大兴区', '116.341', '39.7267', 'Daxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('110116', '怀柔区', '110100', '怀柔', '2', '10', '101400', '中国,北京市,怀柔区', '116.632', '40.316', 'Huairou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('110117', '平谷区', '110100', '平谷', '2', '10', '101200', '中国,北京市,平谷区', '117.121', '40.1406', 'Pinggu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('110228', '密云县', '110100', '密云', '2', '10', '101500', '中国,北京市,密云县', '116.843', '40.3762', 'Miyun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('110229', '延庆县', '110100', '延庆', '2', '10', '102100', '中国,北京市,延庆县', '115.975', '40.4567', 'Yanqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('120100', '天津市', '100000', '天津', '1', '0', '0', '中国,天津市', '117.19', '39.1256', 'Tianjin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('120101', '和平区', '120100', '和平', '2', '22', '300041', '中国,天津市,和平区', '117.215', '39.1172', 'Heping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('120102', '河东区', '120100', '河东', '2', '22', '300171', '中国,天津市,河东区', '117.226', '39.1232', 'Hedong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('120103', '河西区', '120100', '河西', '2', '22', '300202', '中国,天津市,河西区', '117.223', '39.1096', 'Hexi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('120104', '南开区', '120100', '南开', '2', '22', '300110', '中国,天津市,南开区', '117.151', '39.1382', 'Nankai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('120105', '河北区', '120100', '河北', '2', '22', '300143', '中国,天津市,河北区', '117.197', '39.1482', 'Hebei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('120106', '红桥区', '120100', '红桥', '2', '22', '300131', '中国,天津市,红桥区', '117.151', '39.1671', 'Hongqiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('120110', '东丽区', '120100', '东丽', '2', '22', '300300', '中国,天津市,东丽区', '117.314', '39.0863', 'Dongli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('120111', '西青区', '120100', '西青', '2', '22', '300380', '中国,天津市,西青区', '117.009', '39.1412', 'Xiqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('120112', '津南区', '120100', '津南', '2', '22', '300350', '中国,天津市,津南区', '117.385', '38.9914', 'Jinnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('120113', '北辰区', '120100', '北辰', '2', '22', '300400', '中国,天津市,北辰区', '117.132', '39.2213', 'Beichen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('120114', '武清区', '120100', '武清', '2', '22', '301700', '中国,天津市,武清区', '117.044', '39.3842', 'Wuqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('120115', '宝坻区', '120100', '宝坻', '2', '22', '301800', '中国,天津市,宝坻区', '117.31', '39.7176', 'Baodi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('120116', '滨海新区', '120100', '滨海新区', '2', '22', '300451', '中国,天津市,滨海新区', '117.702', '39.0267', 'Binhaixinqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('120221', '宁河县', '120100', '宁河', '2', '22', '301500', '中国,天津市,宁河县', '117.826', '39.3305', 'Ninghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('120223', '静海县', '120100', '静海', '2', '22', '301600', '中国,天津市,静海县', '116.974', '38.9458', 'Jinghai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('120225', '蓟县', '120100', '蓟县', '2', '22', '301900', '中国,天津市,蓟县', '117.408', '40.0457', 'Jixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130000', '河北省', '100000', '河北', '1', '0', '0', '中国,河北省', '114.502', '38.0455', 'Hebei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130100', '石家庄市', '130000', '石家庄', '2', '311', '50011', '中国,河北省,石家庄市', '114.502', '38.0455', 'Shijiazhuang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130102', '长安区', '130100', '长安', '3', '311', '50011', '中国,河北省,石家庄市,长安区', '114.539', '38.0367', 'Changan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130104', '桥西区', '130100', '桥西', '3', '311', '50091', '中国,河北省,石家庄市,桥西区', '114.47', '38.0322', 'Qiaoxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130105', '新华区', '130100', '新华', '3', '311', '50051', '中国,河北省,石家庄市,新华区', '114.463', '38.0509', 'Xinhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130107', '井陉矿区', '130100', '井陉矿区', '3', '311', '50100', '中国,河北省,石家庄市,井陉矿区', '114.065', '38.0671', 'Jingxingkuangqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130108', '裕华区', '130100', '裕华', '3', '311', '50031', '中国,河北省,石家庄市,裕华区', '114.531', '38.006', 'Yuhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130109', '藁城区', '130100', '藁城', '3', '311', '52160', '中国,河北省,石家庄市,藁城区', '114.847', '38.0216', 'Gaocheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130110', '鹿泉区', '130100', '鹿泉', '3', '311', '50200', '中国,河北省,石家庄市,鹿泉区', '114.313', '38.0878', 'Luquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130111', '栾城区', '130100', '栾城', '3', '311', '51430', '中国,河北省,石家庄市,栾城区', '114.648', '37.9002', 'Luancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130121', '井陉县', '130100', '井陉', '3', '311', '50300', '中国,河北省,石家庄市,井陉县', '114.143', '38.0369', 'Jingxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130123', '正定县', '130100', '正定', '3', '311', '50800', '中国,河北省,石家庄市,正定县', '114.573', '38.1445', 'Zhengding', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130125', '行唐县', '130100', '行唐', '3', '311', '50600', '中国,河北省,石家庄市,行唐县', '114.553', '38.4365', 'Xingtang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130126', '灵寿县', '130100', '灵寿', '3', '311', '50500', '中国,河北省,石家庄市,灵寿县', '114.383', '38.3084', 'Lingshou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130127', '高邑县', '130100', '高邑', '3', '311', '51330', '中国,河北省,石家庄市,高邑县', '114.611', '37.6156', 'Gaoyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130128', '深泽县', '130100', '深泽', '3', '311', '52560', '中国,河北省,石家庄市,深泽县', '115.204', '38.1835', 'Shenze', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130129', '赞皇县', '130100', '赞皇', '3', '311', '51230', '中国,河北省,石家庄市,赞皇县', '114.388', '37.6614', 'Zanhuang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130130', '无极县', '130100', '无极', '3', '311', '52460', '中国,河北省,石家庄市,无极县', '114.975', '38.1765', 'Wuji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130131', '平山县', '130100', '平山', '3', '311', '50400', '中国,河北省,石家庄市,平山县', '114.186', '38.2599', 'Pingshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130132', '元氏县', '130100', '元氏', '3', '311', '51130', '中国,河北省,石家庄市,元氏县', '114.525', '37.7667', 'Yuanshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130133', '赵县', '130100', '赵县', '3', '311', '51530', '中国,河北省,石家庄市,赵县', '114.776', '37.7563', 'Zhaoxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130181', '辛集市', '130100', '辛集', '3', '311', '52360', '中国,河北省,石家庄市,辛集市', '115.206', '37.9408', 'Xinji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130183', '晋州市', '130100', '晋州', '3', '311', '52260', '中国,河北省,石家庄市,晋州市', '115.043', '38.0313', 'Jinzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130184', '新乐市', '130100', '新乐', '3', '311', '50700', '中国,河北省,石家庄市,新乐市', '114.69', '38.3442', 'Xinle', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130200', '唐山市', '130000', '唐山', '2', '315', '63000', '中国,河北省,唐山市', '118.175', '39.6351', 'Tangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130202', '路南区', '130200', '路南', '3', '315', '63000', '中国,河北省,唐山市,路南区', '118.154', '39.625', 'Lunan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130203', '路北区', '130200', '路北', '3', '315', '63000', '中国,河北省,唐山市,路北区', '118.201', '39.6244', 'Lubei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130204', '古冶区', '130200', '古冶', '3', '315', '63100', '中国,河北省,唐山市,古冶区', '118.458', '39.7199', 'Guye', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130205', '开平区', '130200', '开平', '3', '315', '63021', '中国,河北省,唐山市,开平区', '118.262', '39.6713', 'Kaiping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130207', '丰南区', '130200', '丰南', '3', '315', '63300', '中国,河北省,唐山市,丰南区', '118.113', '39.5648', 'Fengnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130208', '丰润区', '130200', '丰润', '3', '315', '64000', '中国,河北省,唐山市,丰润区', '118.13', '39.8244', 'Fengrun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130209', '曹妃甸区', '130200', '曹妃甸', '3', '315', '63200', '中国,河北省,唐山市,曹妃甸区', '118.46', '39.2731', 'Caofeidian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130223', '滦县', '130200', '滦县', '3', '315', '63700', '中国,河北省,唐山市,滦县', '118.703', '39.7406', 'Luanxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130224', '滦南县', '130200', '滦南', '3', '315', '63500', '中国,河北省,唐山市,滦南县', '118.674', '39.5039', 'Luannan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130225', '乐亭县', '130200', '乐亭', '3', '315', '63600', '中国,河北省,唐山市,乐亭县', '118.912', '39.4256', 'Laoting', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130227', '迁西县', '130200', '迁西', '3', '315', '64300', '中国,河北省,唐山市,迁西县', '118.316', '40.1459', 'Qianxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130229', '玉田县', '130200', '玉田', '3', '315', '64100', '中国,河北省,唐山市,玉田县', '117.739', '39.9005', 'Yutian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130281', '遵化市', '130200', '遵化', '3', '315', '64200', '中国,河北省,唐山市,遵化市', '117.964', '40.1874', 'Zunhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130283', '迁安市', '130200', '迁安', '3', '315', '64400', '中国,河北省,唐山市,迁安市', '118.701', '39.9983', 'Qianan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130300', '秦皇岛市', '130000', '秦皇岛', '2', '335', '66000', '中国,河北省,秦皇岛市', '119.587', '39.9425', 'Qinhuangdao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130302', '海港区', '130300', '海港', '3', '335', '66000', '中国,河北省,秦皇岛市,海港区', '119.61', '39.9345', 'Haigang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130303', '山海关区', '130300', '山海关', '3', '335', '66200', '中国,河北省,秦皇岛市,山海关区', '119.776', '39.9787', 'Shanhaiguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130304', '北戴河区', '130300', '北戴河', '3', '335', '66100', '中国,河北省,秦皇岛市,北戴河区', '119.484', '39.8341', 'Beidaihe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130321', '青龙满族自治县', '130300', '青龙', '3', '335', '66500', '中国,河北省,秦皇岛市,青龙满族自治县', '118.952', '40.4074', 'Qinglong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130322', '昌黎县', '130300', '昌黎', '3', '335', '66600', '中国,河北省,秦皇岛市,昌黎县', '119.166', '39.7088', 'Changli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130323', '抚宁县', '130300', '抚宁', '3', '335', '66300', '中国,河北省,秦皇岛市,抚宁县', '119.245', '39.8754', 'Funing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130324', '卢龙县', '130300', '卢龙', '3', '335', '66400', '中国,河北省,秦皇岛市,卢龙县', '118.893', '39.8918', 'Lulong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130400', '邯郸市', '130000', '邯郸', '2', '310', '56002', '中国,河北省,邯郸市', '114.491', '36.6123', 'Handan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130402', '邯山区', '130400', '邯山', '3', '310', '56001', '中国,河北省,邯郸市,邯山区', '114.484', '36.6001', 'Hanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130403', '丛台区', '130400', '丛台', '3', '310', '56002', '中国,河北省,邯郸市,丛台区', '114.493', '36.6185', 'Congtai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130404', '复兴区', '130400', '复兴', '3', '310', '56003', '中国,河北省,邯郸市,复兴区', '114.459', '36.6113', 'Fuxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130406', '峰峰矿区', '130400', '峰峰矿区', '3', '310', '56200', '中国,河北省,邯郸市,峰峰矿区', '114.211', '36.4194', 'Fengfengkuangqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130421', '邯郸县', '130400', '邯郸', '3', '310', '56101', '中国,河北省,邯郸市,邯郸县', '114.531', '36.5938', 'Handan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130423', '临漳县', '130400', '临漳', '3', '310', '56600', '中国,河北省,邯郸市,临漳县', '114.619', '36.3346', 'Linzhang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130424', '成安县', '130400', '成安', '3', '310', '56700', '中国,河北省,邯郸市,成安县', '114.67', '36.4441', 'Chengan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130425', '大名县', '130400', '大名', '3', '310', '56900', '中国,河北省,邯郸市,大名县', '115.154', '36.2799', 'Daming', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130426', '涉县', '130400', '涉县', '3', '310', '56400', '中国,河北省,邯郸市,涉县', '113.692', '36.5807', 'Shexian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130427', '磁县', '130400', '磁县', '3', '310', '56500', '中国,河北省,邯郸市,磁县', '114.374', '36.3739', 'Cixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130428', '肥乡县', '130400', '肥乡', '3', '310', '57550', '中国,河北省,邯郸市,肥乡县', '114.8', '36.5481', 'Feixiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130429', '永年县', '130400', '永年', '3', '310', '57150', '中国,河北省,邯郸市,永年县', '114.489', '36.7836', 'Yongnian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130430', '邱县', '130400', '邱县', '3', '310', '57450', '中国,河北省,邯郸市,邱县', '115.174', '36.8208', 'Qiuxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130431', '鸡泽县', '130400', '鸡泽', '3', '310', '57350', '中国,河北省,邯郸市,鸡泽县', '114.874', '36.9237', 'Jize', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130432', '广平县', '130400', '广平', '3', '310', '57650', '中国,河北省,邯郸市,广平县', '114.947', '36.4805', 'Guangping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130433', '馆陶县', '130400', '馆陶', '3', '310', '57750', '中国,河北省,邯郸市,馆陶县', '115.299', '36.5372', 'Guantao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130434', '魏县', '130400', '魏县', '3', '310', '56800', '中国,河北省,邯郸市,魏县', '114.935', '36.3617', 'Weixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130435', '曲周县', '130400', '曲周', '3', '310', '57250', '中国,河北省,邯郸市,曲周县', '114.952', '36.7767', 'Quzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130481', '武安市', '130400', '武安', '3', '310', '56300', '中国,河北省,邯郸市,武安市', '114.202', '36.6928', 'Wuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130500', '邢台市', '130000', '邢台', '2', '319', '54001', '中国,河北省,邢台市', '114.509', '37.0682', 'Xingtai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130502', '桥东区', '130500', '桥东', '3', '319', '54001', '中国,河北省,邢台市,桥东区', '114.507', '37.068', 'Qiaodong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130503', '桥西区', '130500', '桥西', '3', '319', '54000', '中国,河北省,邢台市,桥西区', '114.468', '37.0598', 'Qiaoxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130521', '邢台县', '130500', '邢台', '3', '319', '54001', '中国,河北省,邢台市,邢台县', '114.566', '37.0456', 'Xingtai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130522', '临城县', '130500', '临城', '3', '319', '54300', '中国,河北省,邢台市,临城县', '114.504', '37.4398', 'Lincheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130523', '内丘县', '130500', '内丘', '3', '319', '54200', '中国,河北省,邢台市,内丘县', '114.512', '37.2867', 'Neiqiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130524', '柏乡县', '130500', '柏乡', '3', '319', '55450', '中国,河北省,邢台市,柏乡县', '114.693', '37.4824', 'Baixiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130525', '隆尧县', '130500', '隆尧', '3', '319', '55350', '中国,河北省,邢台市,隆尧县', '114.776', '37.3535', 'Longyao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130526', '任县', '130500', '任县', '3', '319', '55150', '中国,河北省,邢台市,任县', '114.684', '37.1258', 'Renxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130527', '南和县', '130500', '南和', '3', '319', '54400', '中国,河北省,邢台市,南和县', '114.684', '37.0049', 'Nanhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130528', '宁晋县', '130500', '宁晋', '3', '319', '55550', '中国,河北省,邢台市,宁晋县', '114.921', '37.617', 'Ningjin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130529', '巨鹿县', '130500', '巨鹿', '3', '319', '55250', '中国,河北省,邢台市,巨鹿县', '115.035', '37.218', 'Julu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130530', '新河县', '130500', '新河', '3', '319', '55650', '中国,河北省,邢台市,新河县', '115.25', '37.5272', 'Xinhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130531', '广宗县', '130500', '广宗', '3', '319', '54600', '中国,河北省,邢台市,广宗县', '115.143', '37.0746', 'Guangzong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130532', '平乡县', '130500', '平乡', '3', '319', '54500', '中国,河北省,邢台市,平乡县', '115.03', '37.0632', 'Pingxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130533', '威县', '130500', '威县', '3', '319', '54700', '中国,河北省,邢台市,威县', '115.264', '36.9768', 'Weixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130534', '清河县', '130500', '清河', '3', '319', '54800', '中国,河北省,邢台市,清河县', '115.665', '37.0712', 'Qinghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130535', '临西县', '130500', '临西', '3', '319', '54900', '中国,河北省,邢台市,临西县', '115.501', '36.8708', 'Linxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130581', '南宫市', '130500', '南宫', '3', '319', '55750', '中国,河北省,邢台市,南宫市', '115.391', '37.358', 'Nangong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130582', '沙河市', '130500', '沙河', '3', '319', '54100', '中国,河北省,邢台市,沙河市', '114.498', '36.8577', 'Shahe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130600', '保定市', '130000', '保定', '2', '312', '71052', '中国,河北省,保定市', '115.482', '38.8677', 'Baoding', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130602', '新市区', '130600', '新市', '3', '312', '71051', '中国,河北省,保定市,新市区', '115.459', '38.8775', 'Xinshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130603', '北市区', '130600', '北市', '3', '312', '71000', '中国,河北省,保定市,北市区', '115.497', '38.8832', 'Beishi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130604', '南市区', '130600', '南市', '3', '312', '71001', '中国,河北省,保定市,南市区', '115.529', '38.8545', 'Nanshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130621', '满城县', '130600', '满城', '3', '312', '72150', '中国,河北省,保定市,满城县', '115.323', '38.9497', 'Mancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130622', '清苑县', '130600', '清苑', '3', '312', '71100', '中国,河北省,保定市,清苑县', '115.493', '38.7671', 'Qingyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130623', '涞水县', '130600', '涞水', '3', '312', '74100', '中国,河北省,保定市,涞水县', '115.715', '39.394', 'Laishui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130624', '阜平县', '130600', '阜平', '3', '312', '73200', '中国,河北省,保定市,阜平县', '114.197', '38.8476', 'Fuping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130625', '徐水县', '130600', '徐水', '3', '312', '72550', '中国,河北省,保定市,徐水县', '115.658', '39.021', 'Xushui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130626', '定兴县', '130600', '定兴', '3', '312', '72650', '中国,河北省,保定市,定兴县', '115.808', '39.2631', 'Dingxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130627', '唐县', '130600', '唐县', '3', '312', '72350', '中国,河北省,保定市,唐县', '114.985', '38.7451', 'Tangxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130628', '高阳县', '130600', '高阳', '3', '312', '71500', '中国,河北省,保定市,高阳县', '115.779', '38.7', 'Gaoyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130629', '容城县', '130600', '容城', '3', '312', '71700', '中国,河北省,保定市,容城县', '115.872', '39.0535', 'Rongcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130630', '涞源县', '130600', '涞源', '3', '312', '74300', '中国,河北省,保定市,涞源县', '114.691', '39.3539', 'Laiyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130631', '望都县', '130600', '望都', '3', '312', '72450', '中国,河北省,保定市,望都县', '115.157', '38.71', 'Wangdu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130632', '安新县', '130600', '安新', '3', '312', '71600', '中国,河北省,保定市,安新县', '115.936', '38.9353', 'Anxin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130633', '易县', '130600', '易县', '3', '312', '74200', '中国,河北省,保定市,易县', '115.498', '39.3489', 'Yixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130634', '曲阳县', '130600', '曲阳', '3', '312', '73100', '中国,河北省,保定市,曲阳县', '114.701', '38.6215', 'Quyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130635', '蠡县', '130600', '蠡县', '3', '312', '71400', '中国,河北省,保定市,蠡县', '115.577', '38.4897', 'Lixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130636', '顺平县', '130600', '顺平', '3', '312', '72250', '中国,河北省,保定市,顺平县', '115.135', '38.8385', 'Shunping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130637', '博野县', '130600', '博野', '3', '312', '71300', '中国,河北省,保定市,博野县', '115.47', '38.4564', 'Boye', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130638', '雄县', '130600', '雄县', '3', '312', '71800', '中国,河北省,保定市,雄县', '116.109', '38.9944', 'Xiongxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130681', '涿州市', '130600', '涿州', '3', '312', '72750', '中国,河北省,保定市,涿州市', '115.981', '39.4862', 'Zhuozhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130682', '定州市', '130600', '定州', '3', '312', '73000', '中国,河北省,保定市,定州市', '114.99', '38.5162', 'Dingzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130683', '安国市', '130600', '安国', '3', '312', '71200', '中国,河北省,保定市,安国市', '115.323', '38.4139', 'Anguo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130684', '高碑店市', '130600', '高碑店', '3', '312', '74000', '中国,河北省,保定市,高碑店市', '115.874', '39.3265', 'Gaobeidian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130700', '张家口市', '130000', '张家口', '2', '313', '75000', '中国,河北省,张家口市', '114.884', '40.8119', 'Zhangjiakou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130702', '桥东区', '130700', '桥东', '3', '313', '75000', '中国,河北省,张家口市,桥东区', '114.894', '40.7884', 'Qiaodong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130703', '桥西区', '130700', '桥西', '3', '313', '75061', '中国,河北省,张家口市,桥西区', '114.87', '40.8195', 'Qiaoxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130705', '宣化区', '130700', '宣化', '3', '313', '75100', '中国,河北省,张家口市,宣化区', '115.065', '40.6096', 'Xuanhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130706', '下花园区', '130700', '下花园', '3', '313', '75300', '中国,河北省,张家口市,下花园区', '115.287', '40.5024', 'Xiahuayuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130721', '宣化县', '130700', '宣化', '3', '313', '75100', '中国,河北省,张家口市,宣化县', '115.155', '40.5662', 'Xuanhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130722', '张北县', '130700', '张北', '3', '313', '76450', '中国,河北省,张家口市,张北县', '114.714', '41.1598', 'Zhangbei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130723', '康保县', '130700', '康保', '3', '313', '76650', '中国,河北省,张家口市,康保县', '114.6', '41.8522', 'Kangbao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130724', '沽源县', '130700', '沽源', '3', '313', '76550', '中国,河北省,张家口市,沽源县', '115.689', '41.6696', 'Guyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130725', '尚义县', '130700', '尚义', '3', '313', '76750', '中国,河北省,张家口市,尚义县', '113.971', '41.0778', 'Shangyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130726', '蔚县', '130700', '蔚县', '3', '313', '75700', '中国,河北省,张家口市,蔚县', '114.589', '39.8407', 'Yuxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130727', '阳原县', '130700', '阳原', '3', '313', '75800', '中国,河北省,张家口市,阳原县', '114.151', '40.1036', 'Yangyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130728', '怀安县', '130700', '怀安', '3', '313', '76150', '中国,河北省,张家口市,怀安县', '114.386', '40.6743', 'Huaian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130729', '万全县', '130700', '万全', '3', '313', '76250', '中国,河北省,张家口市,万全县', '114.741', '40.7669', 'Wanquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130730', '怀来县', '130700', '怀来', '3', '313', '75400', '中国,河北省,张家口市,怀来县', '115.518', '40.4154', 'Huailai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130731', '涿鹿县', '130700', '涿鹿', '3', '313', '75600', '中国,河北省,张家口市,涿鹿县', '115.224', '40.3764', 'Zhuolu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130732', '赤城县', '130700', '赤城', '3', '313', '75500', '中国,河北省,张家口市,赤城县', '115.832', '40.9144', 'Chicheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130733', '崇礼县', '130700', '崇礼', '3', '313', '76350', '中国,河北省,张家口市,崇礼县', '115.28', '40.9752', 'Chongli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130800', '承德市', '130000', '承德', '2', '314', '67000', '中国,河北省,承德市', '117.939', '40.9762', 'Chengde', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130802', '双桥区', '130800', '双桥', '3', '314', '67000', '中国,河北省,承德市,双桥区', '117.943', '40.9747', 'Shuangqiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130803', '双滦区', '130800', '双滦', '3', '314', '67001', '中国,河北省,承德市,双滦区', '117.745', '40.9538', 'Shuangluan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130804', '鹰手营子矿区', '130800', '鹰手营子矿区', '3', '314', '67200', '中国,河北省,承德市,鹰手营子矿区', '117.66', '40.5474', 'Yingshouyingzikuangqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130821', '承德县', '130800', '承德', '3', '314', '67400', '中国,河北省,承德市,承德县', '118.176', '40.7699', 'Chengde', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130822', '兴隆县', '130800', '兴隆', '3', '314', '67300', '中国,河北省,承德市,兴隆县', '117.501', '40.4171', 'Xinglong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130823', '平泉县', '130800', '平泉', '3', '314', '67500', '中国,河北省,承德市,平泉县', '118.702', '41.0184', 'Pingquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130824', '滦平县', '130800', '滦平', '3', '314', '68250', '中国,河北省,承德市,滦平县', '117.333', '40.9415', 'Luanping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130825', '隆化县', '130800', '隆化', '3', '314', '68150', '中国,河北省,承德市,隆化县', '117.73', '41.3141', 'Longhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130826', '丰宁满族自治县', '130800', '丰宁', '3', '314', '68350', '中国,河北省,承德市,丰宁满族自治县', '116.649', '41.2048', 'Fengning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130827', '宽城满族自治县', '130800', '宽城', '3', '314', '67600', '中国,河北省,承德市,宽城满族自治县', '118.492', '40.6083', 'Kuancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130828', '围场满族蒙古族自治县', '130800', '围场', '3', '314', '68450', '中国,河北省,承德市,围场满族蒙古族自治县', '117.76', '41.9437', 'Weichang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130900', '沧州市', '130000', '沧州', '2', '317', '61001', '中国,河北省,沧州市', '116.857', '38.3106', 'Cangzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130902', '新华区', '130900', '新华', '3', '317', '61000', '中国,河北省,沧州市,新华区', '116.866', '38.3144', 'Xinhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130903', '运河区', '130900', '运河', '3', '317', '61001', '中国,河北省,沧州市,运河区', '116.857', '38.3135', 'Yunhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130921', '沧县', '130900', '沧县', '3', '317', '61000', '中国,河北省,沧州市,沧县', '116.878', '38.2936', 'Cangxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130922', '青县', '130900', '青县', '3', '317', '62650', '中国,河北省,沧州市,青县', '116.803', '38.5835', 'Qingxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130923', '东光县', '130900', '东光', '3', '317', '61600', '中国,河北省,沧州市,东光县', '116.537', '37.8857', 'Dongguang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130924', '海兴县', '130900', '海兴', '3', '317', '61200', '中国,河北省,沧州市,海兴县', '117.498', '38.1396', 'Haixing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130925', '盐山县', '130900', '盐山', '3', '317', '61300', '中国,河北省,沧州市,盐山县', '117.231', '38.0565', 'Yanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130926', '肃宁县', '130900', '肃宁', '3', '317', '62350', '中国,河北省,沧州市,肃宁县', '115.83', '38.4227', 'Suning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130927', '南皮县', '130900', '南皮', '3', '317', '61500', '中国,河北省,沧州市,南皮县', '116.702', '38.0411', 'Nanpi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130928', '吴桥县', '130900', '吴桥', '3', '317', '61800', '中国,河北省,沧州市,吴桥县', '116.385', '37.6255', 'Wuqiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130929', '献县', '130900', '献县', '3', '317', '62250', '中国,河北省,沧州市,献县', '116.127', '38.1923', 'Xianxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130930', '孟村回族自治县', '130900', '孟村', '3', '317', '61400', '中国,河北省,沧州市,孟村回族自治县', '117.104', '38.0534', 'Mengcun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130981', '泊头市', '130900', '泊头', '3', '317', '62150', '中国,河北省,沧州市,泊头市', '116.578', '38.0836', 'Botou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130982', '任丘市', '130900', '任丘', '3', '317', '62550', '中国,河北省,沧州市,任丘市', '116.103', '38.7112', 'Renqiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130983', '黄骅市', '130900', '黄骅', '3', '317', '61100', '中国,河北省,沧州市,黄骅市', '117.339', '38.3706', 'Huanghua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('130984', '河间市', '130900', '河间', '3', '317', '62450', '中国,河北省,沧州市,河间市', '116.099', '38.4455', 'Hejian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131000', '廊坊市', '130000', '廊坊', '2', '316', '65000', '中国,河北省,廊坊市', '116.714', '39.5292', 'Langfang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131002', '安次区', '131000', '安次', '3', '316', '65000', '中国,河北省,廊坊市,安次区', '116.703', '39.5206', 'Anci', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131003', '广阳区', '131000', '广阳', '3', '316', '65000', '中国,河北省,廊坊市,广阳区', '116.711', '39.5228', 'Guangyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131022', '固安县', '131000', '固安', '3', '316', '65500', '中国,河北省,廊坊市,固安县', '116.299', '39.4383', 'Guan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131023', '永清县', '131000', '永清', '3', '316', '65600', '中国,河北省,廊坊市,永清县', '116.501', '39.3207', 'Yongqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131024', '香河县', '131000', '香河', '3', '316', '65400', '中国,河北省,廊坊市,香河县', '117.006', '39.7613', 'Xianghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131025', '大城县', '131000', '大城', '3', '316', '65900', '中国,河北省,廊坊市,大城县', '116.654', '38.7053', 'Daicheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131026', '文安县', '131000', '文安', '3', '316', '65800', '中国,河北省,廊坊市,文安县', '116.458', '38.8732', 'Wenan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131028', '大厂回族自治县', '131000', '大厂', '3', '316', '65300', '中国,河北省,廊坊市,大厂回族自治县', '116.989', '39.8865', 'Dachang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131081', '霸州市', '131000', '霸州', '3', '316', '65700', '中国,河北省,廊坊市,霸州市', '116.392', '39.1257', 'Bazhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131082', '三河市', '131000', '三河', '3', '316', '65200', '中国,河北省,廊坊市,三河市', '117.072', '39.9836', 'Sanhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131100', '衡水市', '130000', '衡水', '2', '318', '53000', '中国,河北省,衡水市', '115.666', '37.7351', 'Hengshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131102', '桃城区', '131100', '桃城', '3', '318', '53000', '中国,河北省,衡水市,桃城区', '115.675', '37.735', 'Taocheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131121', '枣强县', '131100', '枣强', '3', '318', '53100', '中国,河北省,衡水市,枣强县', '115.726', '37.5103', 'Zaoqiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131122', '武邑县', '131100', '武邑', '3', '318', '53400', '中国,河北省,衡水市,武邑县', '115.887', '37.8018', 'Wuyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131123', '武强县', '131100', '武强', '3', '318', '53300', '中国,河北省,衡水市,武强县', '115.982', '38.0414', 'Wuqiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131124', '饶阳县', '131100', '饶阳', '3', '318', '53900', '中国,河北省,衡水市,饶阳县', '115.726', '38.2353', 'Raoyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131125', '安平县', '131100', '安平', '3', '318', '53600', '中国,河北省,衡水市,安平县', '115.519', '38.2339', 'Anping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131126', '故城县', '131100', '故城', '3', '318', '53800', '中国,河北省,衡水市,故城县', '115.971', '37.3477', 'Gucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131127', '景县', '131100', '景县', '3', '318', '53500', '中国,河北省,衡水市,景县', '116.269', '37.6926', 'Jingxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131128', '阜城县', '131100', '阜城', '3', '318', '53700', '中国,河北省,衡水市,阜城县', '116.144', '37.8688', 'Fucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131181', '冀州市', '131100', '冀州', '3', '318', '53200', '中国,河北省,衡水市,冀州市', '115.579', '37.5508', 'Jizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('131182', '深州市', '131100', '深州', '3', '318', '53800', '中国,河北省,衡水市,深州市', '115.56', '38.0011', 'Shenzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140000', '山西省', '100000', '山西', '1', '0', '0', '中国,山西省', '112.549', '37.857', 'Shanxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140100', '太原市', '140000', '太原', '2', '351', '30082', '中国,山西省,太原市', '112.549', '37.857', 'Taiyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140105', '小店区', '140100', '小店', '3', '351', '30032', '中国,山西省,太原市,小店区', '112.569', '37.7356', 'Xiaodian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140106', '迎泽区', '140100', '迎泽', '3', '351', '30002', '中国,山西省,太原市,迎泽区', '112.563', '37.8633', 'Yingze', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140107', '杏花岭区', '140100', '杏花岭', '3', '351', '30009', '中国,山西省,太原市,杏花岭区', '112.562', '37.8843', 'Xinghualing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140108', '尖草坪区', '140100', '尖草坪', '3', '351', '30023', '中国,山西省,太原市,尖草坪区', '112.487', '37.9419', 'Jiancaoping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140109', '万柏林区', '140100', '万柏林', '3', '351', '30024', '中国,山西省,太原市,万柏林区', '112.516', '37.8592', 'Wanbailin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140110', '晋源区', '140100', '晋源', '3', '351', '30025', '中国,山西省,太原市,晋源区', '112.48', '37.7248', 'Jinyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140121', '清徐县', '140100', '清徐', '3', '351', '30400', '中国,山西省,太原市,清徐县', '112.359', '37.6076', 'Qingxu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140122', '阳曲县', '140100', '阳曲', '3', '351', '30100', '中国,山西省,太原市,阳曲县', '112.679', '38.0599', 'Yangqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140123', '娄烦县', '140100', '娄烦', '3', '351', '30300', '中国,山西省,太原市,娄烦县', '111.795', '38.0669', 'Loufan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140181', '古交市', '140100', '古交', '3', '351', '30200', '中国,山西省,太原市,古交市', '112.169', '37.9098', 'Gujiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140200', '大同市', '140000', '大同', '2', '352', '37008', '中国,山西省,大同市', '113.295', '40.0903', 'Datong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140202', '城区', '140200', '城区', '3', '352', '37008', '中国,山西省,大同市,城区', '113.298', '40.0757', 'Chengqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140203', '矿区', '140200', '矿区', '3', '352', '37003', '中国,山西省,大同市,矿区', '113.177', '40.0368', 'Kuangqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140211', '南郊区', '140200', '南郊', '3', '352', '37001', '中国,山西省,大同市,南郊区', '113.149', '40.0054', 'Nanjiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140212', '新荣区', '140200', '新荣', '3', '352', '37002', '中国,山西省,大同市,新荣区', '113.135', '40.2562', 'Xinrong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140221', '阳高县', '140200', '阳高', '3', '352', '38100', '中国,山西省,大同市,阳高县', '113.75', '40.3626', 'Yanggao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140222', '天镇县', '140200', '天镇', '3', '352', '38200', '中国,山西省,大同市,天镇县', '114.093', '40.423', 'Tianzhen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140223', '广灵县', '140200', '广灵', '3', '352', '37500', '中国,山西省,大同市,广灵县', '114.282', '39.7608', 'Guangling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140224', '灵丘县', '140200', '灵丘', '3', '352', '34400', '中国,山西省,大同市,灵丘县', '114.237', '39.4404', 'Lingqiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140225', '浑源县', '140200', '浑源', '3', '352', '37400', '中国,山西省,大同市,浑源县', '113.696', '39.6996', 'Hunyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140226', '左云县', '140200', '左云', '3', '352', '37100', '中国,山西省,大同市,左云县', '112.703', '40.0134', 'Zuoyun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140227', '大同县', '140200', '大同', '3', '352', '37300', '中国,山西省,大同市,大同县', '113.612', '40.0401', 'Datong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140300', '阳泉市', '140000', '阳泉', '2', '353', '45000', '中国,山西省,阳泉市', '113.583', '37.8612', 'Yangquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140302', '城区', '140300', '城区', '3', '353', '45000', '中国,山西省,阳泉市,城区', '113.601', '37.8474', 'Chengqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140303', '矿区', '140300', '矿区', '3', '353', '45000', '中国,山西省,阳泉市,矿区', '113.557', '37.8689', 'Kuangqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140311', '郊区', '140300', '郊区', '3', '353', '45011', '中国,山西省,阳泉市,郊区', '113.585', '37.9414', 'Jiaoqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140321', '平定县', '140300', '平定', '3', '353', '45200', '中国,山西省,阳泉市,平定县', '113.658', '37.786', 'Pingding', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140322', '盂县', '140300', '盂县', '3', '353', '45100', '中国,山西省,阳泉市,盂县', '113.412', '38.0858', 'Yuxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140400', '长治市', '140000', '长治', '2', '355', '46000', '中国,山西省,长治市', '113.114', '36.1911', 'Changzhi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140402', '城区', '140400', '城区', '3', '355', '46011', '中国,山西省,长治市,城区', '113.123', '36.2035', 'Chengqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140411', '郊区', '140400', '郊区', '3', '355', '46011', '中国,山西省,长治市,郊区', '113.127', '36.1992', 'Jiaoqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140421', '长治县', '140400', '长治', '3', '355', '47100', '中国,山西省,长治市,长治县', '113.048', '36.0472', 'Changzhi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140423', '襄垣县', '140400', '襄垣', '3', '355', '46200', '中国,山西省,长治市,襄垣县', '113.052', '36.5353', 'Xiangyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140424', '屯留县', '140400', '屯留', '3', '355', '46100', '中国,山西省,长治市,屯留县', '112.892', '36.3158', 'Tunliu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140425', '平顺县', '140400', '平顺', '3', '355', '47400', '中国,山西省,长治市,平顺县', '113.436', '36.2001', 'Pingshun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140426', '黎城县', '140400', '黎城', '3', '355', '47600', '中国,山西省,长治市,黎城县', '113.388', '36.503', 'Licheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140427', '壶关县', '140400', '壶关', '3', '355', '47300', '中国,山西省,长治市,壶关县', '113.207', '36.113', 'Huguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140428', '长子县', '140400', '长子', '3', '355', '46600', '中国,山西省,长治市,长子县', '112.877', '36.1213', 'Zhangzi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140429', '武乡县', '140400', '武乡', '3', '355', '46300', '中国,山西省,长治市,武乡县', '112.863', '36.8369', 'Wuxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140430', '沁县', '140400', '沁县', '3', '355', '46400', '中国,山西省,长治市,沁县', '112.699', '36.7563', 'Qinxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140431', '沁源县', '140400', '沁源', '3', '355', '46500', '中国,山西省,长治市,沁源县', '112.338', '36.5001', 'Qinyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140481', '潞城市', '140400', '潞城', '3', '355', '47500', '中国,山西省,长治市,潞城市', '113.229', '36.3341', 'Lucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140500', '晋城市', '140000', '晋城', '2', '356', '48000', '中国,山西省,晋城市', '112.851', '35.4976', 'Jincheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140502', '城区', '140500', '城区', '3', '356', '48000', '中国,山西省,晋城市,城区', '112.853', '35.5018', 'Chengqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140521', '沁水县', '140500', '沁水', '3', '356', '48200', '中国,山西省,晋城市,沁水县', '112.187', '35.691', 'Qinshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140522', '阳城县', '140500', '阳城', '3', '356', '48100', '中国,山西省,晋城市,阳城县', '112.415', '35.4861', 'Yangcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140524', '陵川县', '140500', '陵川', '3', '356', '48300', '中国,山西省,晋城市,陵川县', '113.281', '35.7753', 'Lingchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140525', '泽州县', '140500', '泽州', '3', '356', '48012', '中国,山西省,晋城市,泽州县', '112.839', '35.5079', 'Zezhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140581', '高平市', '140500', '高平', '3', '356', '48400', '中国,山西省,晋城市,高平市', '112.923', '35.7971', 'Gaoping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140600', '朔州市', '140000', '朔州', '2', '349', '38500', '中国,山西省,朔州市', '112.433', '39.3313', 'Shuozhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140602', '朔城区', '140600', '朔城', '3', '349', '36000', '中国,山西省,朔州市,朔城区', '112.432', '39.3198', 'Shuocheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140603', '平鲁区', '140600', '平鲁', '3', '349', '38600', '中国,山西省,朔州市,平鲁区', '112.288', '39.5116', 'Pinglu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140621', '山阴县', '140600', '山阴', '3', '349', '36900', '中国,山西省,朔州市,山阴县', '112.817', '39.527', 'Shanyin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140622', '应县', '140600', '应县', '3', '349', '37600', '中国,山西省,朔州市,应县', '113.191', '39.5528', 'Yingxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140623', '右玉县', '140600', '右玉', '3', '349', '37200', '中国,山西省,朔州市,右玉县', '112.469', '39.9901', 'Youyu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140624', '怀仁县', '140600', '怀仁', '3', '349', '38300', '中国,山西省,朔州市,怀仁县', '113.1', '39.8281', 'Huairen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140700', '晋中市', '140000', '晋中', '2', '354', '30600', '中国,山西省,晋中市', '112.736', '37.6965', 'Jinzhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140702', '榆次区', '140700', '榆次', '3', '354', '30600', '中国,山西省,晋中市,榆次区', '112.708', '37.6978', 'Yuci', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140721', '榆社县', '140700', '榆社', '3', '354', '31800', '中国,山西省,晋中市,榆社县', '112.976', '37.0721', 'Yushe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140722', '左权县', '140700', '左权', '3', '354', '32600', '中国,山西省,晋中市,左权县', '113.379', '37.0824', 'Zuoquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140723', '和顺县', '140700', '和顺', '3', '354', '32700', '中国,山西省,晋中市,和顺县', '113.57', '37.3296', 'Heshun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140724', '昔阳县', '140700', '昔阳', '3', '354', '45300', '中国,山西省,晋中市,昔阳县', '113.705', '37.6186', 'Xiyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140725', '寿阳县', '140700', '寿阳', '3', '354', '45400', '中国,山西省,晋中市,寿阳县', '113.175', '37.889', 'Shouyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140726', '太谷县', '140700', '太谷', '3', '354', '30800', '中国,山西省,晋中市,太谷县', '112.552', '37.4216', 'Taigu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140727', '祁县', '140700', '祁县', '3', '354', '30900', '中国,山西省,晋中市,祁县', '112.334', '37.3579', 'Qixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140728', '平遥县', '140700', '平遥', '3', '354', '31100', '中国,山西省,晋中市,平遥县', '112.176', '37.1892', 'Pingyao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140729', '灵石县', '140700', '灵石', '3', '354', '31300', '中国,山西省,晋中市,灵石县', '111.777', '36.8481', 'Lingshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140781', '介休市', '140700', '介休', '3', '354', '32000', '中国,山西省,晋中市,介休市', '111.918', '37.0277', 'Jiexiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140800', '运城市', '140000', '运城', '2', '359', '44000', '中国,山西省,运城市', '111.004', '35.0228', 'Yuncheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140802', '盐湖区', '140800', '盐湖', '3', '359', '44000', '中国,山西省,运城市,盐湖区', '110.998', '35.0151', 'Yanhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140821', '临猗县', '140800', '临猗', '3', '359', '44100', '中国,山西省,运城市,临猗县', '110.774', '35.1446', 'Linyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140822', '万荣县', '140800', '万荣', '3', '359', '44200', '中国,山西省,运城市,万荣县', '110.837', '35.4156', 'Wanrong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140823', '闻喜县', '140800', '闻喜', '3', '359', '43800', '中国,山西省,运城市,闻喜县', '111.223', '35.3555', 'Wenxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140824', '稷山县', '140800', '稷山', '3', '359', '43200', '中国,山西省,运城市,稷山县', '110.979', '35.5999', 'Jishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140825', '新绛县', '140800', '新绛', '3', '359', '43100', '中国,山西省,运城市,新绛县', '111.225', '35.6157', 'Xinjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140826', '绛县', '140800', '绛县', '3', '359', '43600', '中国,山西省,运城市,绛县', '111.567', '35.491', 'Jiangxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140827', '垣曲县', '140800', '垣曲', '3', '359', '43700', '中国,山西省,运城市,垣曲县', '111.672', '35.2992', 'Yuanqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140828', '夏县', '140800', '夏县', '3', '359', '44400', '中国,山西省,运城市,夏县', '111.22', '35.1412', 'Xiaxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140829', '平陆县', '140800', '平陆', '3', '359', '44300', '中国,山西省,运城市,平陆县', '111.217', '34.8377', 'Pinglu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140830', '芮城县', '140800', '芮城', '3', '359', '44600', '中国,山西省,运城市,芮城县', '110.695', '34.6938', 'Ruicheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140881', '永济市', '140800', '永济', '3', '359', '44500', '中国,山西省,运城市,永济市', '110.445', '34.8656', 'Yongji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140882', '河津市', '140800', '河津', '3', '359', '43300', '中国,山西省,运城市,河津市', '110.712', '35.5948', 'Hejin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140900', '忻州市', '140000', '忻州', '2', '350', '34000', '中国,山西省,忻州市', '112.734', '38.4177', 'Xinzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140902', '忻府区', '140900', '忻府', '3', '350', '34000', '中国,山西省,忻州市,忻府区', '112.746', '38.4041', 'Xinfu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140921', '定襄县', '140900', '定襄', '3', '350', '35400', '中国,山西省,忻州市,定襄县', '112.957', '38.4739', 'Dingxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140922', '五台县', '140900', '五台', '3', '350', '35500', '中国,山西省,忻州市,五台县', '113.253', '38.7277', 'Wutai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140923', '代县', '140900', '代县', '3', '350', '34200', '中国,山西省,忻州市,代县', '112.959', '39.0672', 'Daixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140924', '繁峙县', '140900', '繁峙', '3', '350', '34300', '中国,山西省,忻州市,繁峙县', '113.263', '39.1889', 'Fanshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140925', '宁武县', '140900', '宁武', '3', '350', '36700', '中国,山西省,忻州市,宁武县', '112.304', '39.0021', 'Ningwu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140926', '静乐县', '140900', '静乐', '3', '350', '35100', '中国,山西省,忻州市,静乐县', '111.942', '38.3602', 'Jingle', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140927', '神池县', '140900', '神池', '3', '350', '36100', '中国,山西省,忻州市,神池县', '112.205', '39.09', 'Shenchi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140928', '五寨县', '140900', '五寨', '3', '350', '36200', '中国,山西省,忻州市,五寨县', '111.849', '38.9076', 'Wuzhai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140929', '岢岚县', '140900', '岢岚', '3', '350', '36300', '中国,山西省,忻州市,岢岚县', '111.574', '38.7045', 'Kelan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140930', '河曲县', '140900', '河曲', '3', '350', '36500', '中国,山西省,忻州市,河曲县', '111.138', '39.3844', 'Hequ', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140931', '保德县', '140900', '保德', '3', '350', '36600', '中国,山西省,忻州市,保德县', '111.087', '39.0225', 'Baode', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140932', '偏关县', '140900', '偏关', '3', '350', '36400', '中国,山西省,忻州市,偏关县', '111.509', '39.4361', 'Pianguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('140981', '原平市', '140900', '原平', '3', '350', '34100', '中国,山西省,忻州市,原平市', '112.706', '38.7318', 'Yuanping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141000', '临汾市', '140000', '临汾', '2', '357', '41000', '中国,山西省,临汾市', '111.518', '36.0841', 'Linfen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141002', '尧都区', '141000', '尧都', '3', '357', '41000', '中国,山西省,临汾市,尧都区', '111.579', '36.083', 'Yaodu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141021', '曲沃县', '141000', '曲沃', '3', '357', '43400', '中国,山西省,临汾市,曲沃县', '111.475', '35.6412', 'Quwo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141022', '翼城县', '141000', '翼城', '3', '357', '43500', '中国,山西省,临汾市,翼城县', '111.718', '35.7388', 'Yicheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141023', '襄汾县', '141000', '襄汾', '3', '357', '41500', '中国,山西省,临汾市,襄汾县', '111.442', '35.8771', 'Xiangfen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141024', '洪洞县', '141000', '洪洞', '3', '357', '41600', '中国,山西省,临汾市,洪洞县', '111.675', '36.2542', 'Hongtong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141025', '古县', '141000', '古县', '3', '357', '42400', '中国,山西省,临汾市,古县', '111.92', '36.2669', 'Guxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141026', '安泽县', '141000', '安泽', '3', '357', '42500', '中国,山西省,临汾市,安泽县', '112.25', '36.148', 'Anze', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141027', '浮山县', '141000', '浮山', '3', '357', '42600', '中国,山西省,临汾市,浮山县', '111.847', '35.9685', 'Fushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141028', '吉县', '141000', '吉县', '3', '357', '42200', '中国,山西省,临汾市,吉县', '110.681', '36.0987', 'Jixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141029', '乡宁县', '141000', '乡宁', '3', '357', '42100', '中国,山西省,临汾市,乡宁县', '110.847', '35.9707', 'Xiangning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141030', '大宁县', '141000', '大宁', '3', '357', '42300', '中国,山西省,临汾市,大宁县', '110.752', '36.4662', 'Daning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141031', '隰县', '141000', '隰县', '3', '357', '41300', '中国,山西省,临汾市,隰县', '110.939', '36.6926', 'Xixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141032', '永和县', '141000', '永和', '3', '357', '41400', '中国,山西省,临汾市,永和县', '110.632', '36.7584', 'Yonghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141033', '蒲县', '141000', '蒲县', '3', '357', '41200', '中国,山西省,临汾市,蒲县', '111.097', '36.4124', 'Puxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141034', '汾西县', '141000', '汾西', '3', '357', '31500', '中国,山西省,临汾市,汾西县', '111.568', '36.6506', 'Fenxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141081', '侯马市', '141000', '侯马', '3', '357', '43000', '中国,山西省,临汾市,侯马市', '111.372', '35.619', 'Houma', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141082', '霍州市', '141000', '霍州', '3', '357', '31400', '中国,山西省,临汾市,霍州市', '111.755', '36.5638', 'Huozhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141100', '吕梁市', '140000', '吕梁', '2', '358', '33000', '中国,山西省,吕梁市', '111.134', '37.5244', 'Lvliang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141102', '离石区', '141100', '离石', '3', '358', '33000', '中国,山西省,吕梁市,离石区', '111.151', '37.5177', 'Lishi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141121', '文水县', '141100', '文水', '3', '358', '32100', '中国,山西省,吕梁市,文水县', '112.028', '37.4384', 'Wenshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141122', '交城县', '141100', '交城', '3', '358', '30500', '中国,山西省,吕梁市,交城县', '112.159', '37.5512', 'Jiaocheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141123', '兴县', '141100', '兴县', '3', '358', '33600', '中国,山西省,吕梁市,兴县', '111.127', '38.4632', 'Xingxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141124', '临县', '141100', '临县', '3', '358', '33200', '中国,山西省,吕梁市,临县', '110.993', '37.9527', 'Linxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141125', '柳林县', '141100', '柳林', '3', '358', '33300', '中国,山西省,吕梁市,柳林县', '110.889', '37.4293', 'Liulin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141126', '石楼县', '141100', '石楼', '3', '358', '32500', '中国,山西省,吕梁市,石楼县', '110.835', '36.9973', 'Shilou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141127', '岚县', '141100', '岚县', '3', '358', '33500', '中国,山西省,吕梁市,岚县', '111.676', '38.2787', 'Lanxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141128', '方山县', '141100', '方山', '3', '358', '33100', '中国,山西省,吕梁市,方山县', '111.24', '37.8898', 'Fangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141129', '中阳县', '141100', '中阳', '3', '358', '33400', '中国,山西省,吕梁市,中阳县', '111.179', '37.3572', 'Zhongyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141130', '交口县', '141100', '交口', '3', '358', '32400', '中国,山西省,吕梁市,交口县', '111.181', '36.9821', 'Jiaokou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141181', '孝义市', '141100', '孝义', '3', '358', '32300', '中国,山西省,吕梁市,孝义市', '111.774', '37.1441', 'Xiaoyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('141182', '汾阳市', '141100', '汾阳', '3', '358', '32200', '中国,山西省,吕梁市,汾阳市', '111.788', '37.266', 'Fenyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150000', '内蒙古自治区', '100000', '内蒙古', '1', '0', '0', '中国,内蒙古自治区', '111.671', '40.8183', 'Inner Mongolia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150100', '呼和浩特市', '150000', '呼和浩特', '2', '471', '10000', '中国,内蒙古自治区,呼和浩特市', '111.671', '40.8183', 'Hohhot', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150102', '新城区', '150100', '新城', '3', '471', '10050', '中国,内蒙古自治区,呼和浩特市,新城区', '111.666', '40.8583', 'Xincheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150103', '回民区', '150100', '回民', '3', '471', '10030', '中国,内蒙古自治区,呼和浩特市,回民区', '111.624', '40.8083', 'Huimin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150104', '玉泉区', '150100', '玉泉', '3', '471', '10020', '中国,内蒙古自治区,呼和浩特市,玉泉区', '111.675', '40.7523', 'Yuquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150105', '赛罕区', '150100', '赛罕', '3', '471', '10020', '中国,内蒙古自治区,呼和浩特市,赛罕区', '111.702', '40.7921', 'Saihan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150121', '土默特左旗', '150100', '土默特左旗', '3', '471', '10100', '中国,内蒙古自治区,呼和浩特市,土默特左旗', '111.149', '40.7223', 'Tumotezuoqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150122', '托克托县', '150100', '托克托', '3', '471', '10200', '中国,内蒙古自治区,呼和浩特市,托克托县', '111.191', '40.2749', 'Tuoketuo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150123', '和林格尔县', '150100', '和林格尔', '3', '471', '11500', '中国,内蒙古自治区,呼和浩特市,和林格尔县', '111.822', '40.3789', 'Helingeer', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150124', '清水河县', '150100', '清水河', '3', '471', '11600', '中国,内蒙古自治区,呼和浩特市,清水河县', '111.683', '39.9097', 'Qingshuihe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150125', '武川县', '150100', '武川', '3', '471', '11700', '中国,内蒙古自治区,呼和浩特市,武川县', '111.458', '41.0929', 'Wuchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150200', '包头市', '150000', '包头', '2', '472', '14025', '中国,内蒙古自治区,包头市', '109.84', '40.6582', 'Baotou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150202', '东河区', '150200', '东河', '3', '472', '14040', '中国,内蒙古自治区,包头市,东河区', '110.046', '40.5824', 'Donghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150203', '昆都仑区', '150200', '昆都仑', '3', '472', '14010', '中国,内蒙古自治区,包头市,昆都仑区', '109.839', '40.6418', 'Kundulun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150204', '青山区', '150200', '青山', '3', '472', '14030', '中国,内蒙古自治区,包头市,青山区', '109.901', '40.6433', 'Qingshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150205', '石拐区', '150200', '石拐', '3', '472', '14070', '中国,内蒙古自治区,包头市,石拐区', '110.273', '40.673', 'Shiguai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150206', '白云鄂博矿区', '150200', '白云鄂博矿区', '3', '472', '14080', '中国,内蒙古自治区,包头市,白云鄂博矿区', '109.974', '41.7697', 'Baiyunebokuangqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150207', '九原区', '150200', '九原', '3', '472', '14060', '中国,内蒙古自治区,包头市,九原区', '109.965', '40.6055', 'Jiuyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150221', '土默特右旗', '150200', '土默特右旗', '3', '472', '14100', '中国,内蒙古自治区,包头市,土默特右旗', '110.524', '40.5688', 'Tumoteyouqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150222', '固阳县', '150200', '固阳', '3', '472', '14200', '中国,内蒙古自治区,包头市,固阳县', '110.064', '41.0185', 'Guyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150223', '达尔罕茂明安联合旗', '150200', '达茂旗', '3', '472', '14500', '中国,内蒙古自治区,包头市,达尔罕茂明安联合旗', '110.433', '41.6987', 'Damaoqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150300', '乌海市', '150000', '乌海', '2', '473', '16000', '中国,内蒙古自治区,乌海市', '106.826', '39.6737', 'Wuhai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150302', '海勃湾区', '150300', '海勃湾', '3', '473', '16000', '中国,内蒙古自治区,乌海市,海勃湾区', '106.822', '39.6696', 'Haibowan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150303', '海南区', '150300', '海南', '3', '473', '16030', '中国,内蒙古自治区,乌海市,海南区', '106.887', '39.4413', 'Hainan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150304', '乌达区', '150300', '乌达', '3', '473', '16040', '中国,内蒙古自治区,乌海市,乌达区', '106.727', '39.505', 'Wuda', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150400', '赤峰市', '150000', '赤峰', '2', '476', '24000', '中国,内蒙古自治区,赤峰市', '118.957', '42.2753', 'Chifeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150402', '红山区', '150400', '红山', '3', '476', '24020', '中国,内蒙古自治区,赤峰市,红山区', '118.958', '42.2431', 'Hongshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150403', '元宝山区', '150400', '元宝山', '3', '476', '24076', '中国,内蒙古自治区,赤峰市,元宝山区', '119.289', '42.0401', 'Yuanbaoshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150404', '松山区', '150400', '松山', '3', '476', '24005', '中国,内蒙古自治区,赤峰市,松山区', '118.933', '42.2861', 'Songshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150421', '阿鲁科尔沁旗', '150400', '阿鲁科尔沁旗', '3', '476', '25550', '中国,内蒙古自治区,赤峰市,阿鲁科尔沁旗', '120.065', '43.8799', 'Alukeerqinqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150422', '巴林左旗', '150400', '巴林左旗', '3', '476', '25450', '中国,内蒙古自治区,赤峰市,巴林左旗', '119.38', '43.9703', 'Balinzuoqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150423', '巴林右旗', '150400', '巴林右旗', '3', '476', '25150', '中国,内蒙古自治区,赤峰市,巴林右旗', '118.665', '43.5339', 'Balinyouqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150424', '林西县', '150400', '林西', '3', '476', '25250', '中国,内蒙古自治区,赤峰市,林西县', '118.047', '43.6116', 'Linxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150425', '克什克腾旗', '150400', '克什克腾旗', '3', '476', '25350', '中国,内蒙古自治区,赤峰市,克什克腾旗', '117.546', '43.265', 'Keshiketengqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150426', '翁牛特旗', '150400', '翁牛特旗', '3', '476', '24500', '中国,内蒙古自治区,赤峰市,翁牛特旗', '119.03', '42.9315', 'Wengniuteqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150428', '喀喇沁旗', '150400', '喀喇沁旗', '3', '476', '24400', '中国,内蒙古自治区,赤峰市,喀喇沁旗', '118.701', '41.9292', 'Kalaqinqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150429', '宁城县', '150400', '宁城', '3', '476', '24200', '中国,内蒙古自治区,赤峰市,宁城县', '119.344', '41.5966', 'Ningcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150430', '敖汉旗', '150400', '敖汉旗', '3', '476', '24300', '中国,内蒙古自治区,赤峰市,敖汉旗', '119.922', '42.2907', 'Aohanqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150500', '通辽市', '150000', '通辽', '2', '475', '28000', '中国,内蒙古自治区,通辽市', '122.263', '43.6174', 'Tongliao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150502', '科尔沁区', '150500', '科尔沁', '3', '475', '28000', '中国,内蒙古自治区,通辽市,科尔沁区', '122.256', '43.6226', 'Keerqin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150521', '科尔沁左翼中旗', '150500', '科尔沁左翼中旗', '3', '475', '29300', '中国,内蒙古自治区,通辽市,科尔沁左翼中旗', '123.319', '44.1301', 'Keerqinzuoyizhongqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150522', '科尔沁左翼后旗', '150500', '科尔沁左翼后旗', '3', '475', '28100', '中国,内蒙古自治区,通辽市,科尔沁左翼后旗', '122.357', '42.949', 'Keerqinzuoyihouqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150523', '开鲁县', '150500', '开鲁', '3', '475', '28400', '中国,内蒙古自治区,通辽市,开鲁县', '121.319', '43.6', 'Kailu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150524', '库伦旗', '150500', '库伦旗', '3', '475', '28200', '中国,内蒙古自治区,通辽市,库伦旗', '121.776', '42.73', 'Kulunqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150525', '奈曼旗', '150500', '奈曼旗', '3', '475', '28300', '中国,内蒙古自治区,通辽市,奈曼旗', '120.663', '42.8453', 'Naimanqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150526', '扎鲁特旗', '150500', '扎鲁特旗', '3', '475', '29100', '中国,内蒙古自治区,通辽市,扎鲁特旗', '120.915', '44.5559', 'Zhaluteqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150581', '霍林郭勒市', '150500', '霍林郭勒', '3', '475', '29200', '中国,内蒙古自治区,通辽市,霍林郭勒市', '119.654', '45.5345', 'Huolinguole', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150600', '鄂尔多斯市', '150000', '鄂尔多斯', '2', '477', '17004', '中国,内蒙古自治区,鄂尔多斯市', '109.99', '39.8172', 'Ordos', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150602', '东胜区', '150600', '东胜', '3', '477', '17000', '中国,内蒙古自治区,鄂尔多斯市,东胜区', '109.963', '39.8224', 'Dongsheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150621', '达拉特旗', '150600', '达拉特旗', '3', '477', '14300', '中国,内蒙古自治区,鄂尔多斯市,达拉特旗', '110.033', '40.4001', 'Dalateqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150622', '准格尔旗', '150600', '准格尔旗', '3', '477', '17100', '中国,内蒙古自治区,鄂尔多斯市,准格尔旗', '111.236', '39.8678', 'Zhungeerqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150623', '鄂托克前旗', '150600', '鄂托克前旗', '3', '477', '16200', '中国,内蒙古自治区,鄂尔多斯市,鄂托克前旗', '107.484', '38.184', 'Etuokeqianqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150624', '鄂托克旗', '150600', '鄂托克旗', '3', '477', '16100', '中国,内蒙古自治区,鄂尔多斯市,鄂托克旗', '107.982', '39.0946', 'Etuokeqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150625', '杭锦旗', '150600', '杭锦旗', '3', '477', '17400', '中国,内蒙古自治区,鄂尔多斯市,杭锦旗', '108.729', '39.8402', 'Hangjinqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150626', '乌审旗', '150600', '乌审旗', '3', '477', '17300', '中国,内蒙古自治区,鄂尔多斯市,乌审旗', '108.846', '38.5909', 'Wushenqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150627', '伊金霍洛旗', '150600', '伊金霍洛旗', '3', '477', '17200', '中国,内蒙古自治区,鄂尔多斯市,伊金霍洛旗', '109.749', '39.5739', 'Yijinhuoluoqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150700', '呼伦贝尔市', '150000', '呼伦贝尔', '2', '470', '21008', '中国,内蒙古自治区,呼伦贝尔市', '119.758', '49.2153', 'Hulunber', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150702', '海拉尔区', '150700', '海拉尔', '3', '470', '21000', '中国,内蒙古自治区,呼伦贝尔市,海拉尔区', '119.736', '49.2122', 'Hailaer', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150703', '扎赉诺尔区', '150700', '扎赉诺尔', '3', '470', '21410', '中国,内蒙古自治区,呼伦贝尔市,扎赉诺尔区', '117.793', '49.4869', 'Zhalainuoer', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150721', '阿荣旗', '150700', '阿荣旗', '3', '470', '162750', '中国,内蒙古自治区,呼伦贝尔市,阿荣旗', '123.459', '48.1258', 'Arongqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150722', '莫力达瓦达斡尔族自治旗', '150700', '莫旗', '3', '470', '162850', '中国,内蒙古自治区,呼伦贝尔市,莫力达瓦达斡尔族自治旗', '124.515', '48.4805', 'Moqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150723', '鄂伦春自治旗', '150700', '鄂伦春', '3', '470', '165450', '中国,内蒙古自治区,呼伦贝尔市,鄂伦春自治旗', '123.726', '50.5978', 'Elunchun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150724', '鄂温克族自治旗', '150700', '鄂温', '3', '470', '21100', '中国,内蒙古自治区,呼伦贝尔市,鄂温克族自治旗', '119.757', '49.1428', 'Ewen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150725', '陈巴尔虎旗', '150700', '陈巴尔虎旗', '3', '470', '21500', '中国,内蒙古自治区,呼伦贝尔市,陈巴尔虎旗', '119.424', '49.3268', 'Chenbaerhuqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150726', '新巴尔虎左旗', '150700', '新巴尔虎左旗', '3', '470', '21200', '中国,内蒙古自治区,呼伦贝尔市,新巴尔虎左旗', '118.27', '48.2184', 'Xinbaerhuzuoqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150727', '新巴尔虎右旗', '150700', '新巴尔虎右旗', '3', '470', '21300', '中国,内蒙古自治区,呼伦贝尔市,新巴尔虎右旗', '116.824', '48.6647', 'Xinbaerhuyouqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150781', '满洲里市', '150700', '满洲里', '3', '470', '21400', '中国,内蒙古自治区,呼伦贝尔市,满洲里市', '117.479', '49.5827', 'Manzhouli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150782', '牙克石市', '150700', '牙克石', '3', '470', '22150', '中国,内蒙古自治区,呼伦贝尔市,牙克石市', '120.712', '49.2856', 'Yakeshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150783', '扎兰屯市', '150700', '扎兰屯', '3', '470', '162650', '中国,内蒙古自治区,呼伦贝尔市,扎兰屯市', '122.738', '48.0136', 'Zhalantun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150784', '额尔古纳市', '150700', '额尔古纳', '3', '470', '22250', '中国,内蒙古自治区,呼伦贝尔市,额尔古纳市', '120.191', '50.2425', 'Eerguna', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150785', '根河市', '150700', '根河', '3', '470', '22350', '中国,内蒙古自治区,呼伦贝尔市,根河市', '121.522', '50.78', 'Genhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150800', '巴彦淖尔市', '150000', '巴彦淖尔', '2', '478', '15001', '中国,内蒙古自治区,巴彦淖尔市', '107.417', '40.7574', 'Bayan Nur', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150802', '临河区', '150800', '临河', '3', '478', '15001', '中国,内蒙古自治区,巴彦淖尔市,临河区', '107.427', '40.7583', 'Linhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150821', '五原县', '150800', '五原', '3', '478', '15100', '中国,内蒙古自治区,巴彦淖尔市,五原县', '108.269', '41.0963', 'Wuyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150822', '磴口县', '150800', '磴口', '3', '478', '15200', '中国,内蒙古自治区,巴彦淖尔市,磴口县', '107.009', '40.3306', 'Dengkou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150823', '乌拉特前旗', '150800', '乌拉特前旗', '3', '478', '14400', '中国,内蒙古自治区,巴彦淖尔市,乌拉特前旗', '108.652', '40.7365', 'Wulateqianqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150824', '乌拉特中旗', '150800', '乌拉特中旗', '3', '478', '15300', '中国,内蒙古自治区,巴彦淖尔市,乌拉特中旗', '108.526', '41.5679', 'Wulatezhongqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150825', '乌拉特后旗', '150800', '乌拉特后旗', '3', '478', '15500', '中国,内蒙古自治区,巴彦淖尔市,乌拉特后旗', '106.99', '41.4315', 'Wulatehouqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150826', '杭锦后旗', '150800', '杭锦后旗', '3', '478', '15400', '中国,内蒙古自治区,巴彦淖尔市,杭锦后旗', '107.151', '40.8863', 'Hangjinhouqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150900', '乌兰察布市', '150000', '乌兰察布', '2', '474', '12000', '中国,内蒙古自治区,乌兰察布市', '113.115', '41.0341', 'Ulanqab', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150902', '集宁区', '150900', '集宁', '3', '474', '12000', '中国,内蒙古自治区,乌兰察布市,集宁区', '113.115', '41.0353', 'Jining', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150921', '卓资县', '150900', '卓资', '3', '474', '12300', '中国,内蒙古自治区,乌兰察布市,卓资县', '112.578', '40.8941', 'Zhuozi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150922', '化德县', '150900', '化德', '3', '474', '13350', '中国,内蒙古自治区,乌兰察布市,化德县', '114.011', '41.9043', 'Huade', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150923', '商都县', '150900', '商都', '3', '474', '13450', '中国,内蒙古自治区,乌兰察布市,商都县', '113.578', '41.5621', 'Shangdu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150924', '兴和县', '150900', '兴和', '3', '474', '13650', '中国,内蒙古自治区,乌兰察布市,兴和县', '113.834', '40.8719', 'Xinghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150925', '凉城县', '150900', '凉城', '3', '474', '13750', '中国,内蒙古自治区,乌兰察布市,凉城县', '112.496', '40.5335', 'Liangcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150926', '察哈尔右翼前旗', '150900', '察右前旗', '3', '474', '12200', '中国,内蒙古自治区,乌兰察布市,察哈尔右翼前旗', '113.221', '40.7788', 'Chayouqianqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150927', '察哈尔右翼中旗', '150900', '察右中旗', '3', '474', '13550', '中国,内蒙古自治区,乌兰察布市,察哈尔右翼中旗', '112.635', '41.2774', 'Chayouzhongqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150928', '察哈尔右翼后旗', '150900', '察右后旗', '3', '474', '12400', '中国,内蒙古自治区,乌兰察布市,察哈尔右翼后旗', '113.192', '41.4355', 'Chayouhouqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150929', '四子王旗', '150900', '四子王旗', '3', '474', '11800', '中国,内蒙古自治区,乌兰察布市,四子王旗', '111.707', '41.5331', 'Siziwangqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('150981', '丰镇市', '150900', '丰镇', '3', '474', '12100', '中国,内蒙古自治区,乌兰察布市,丰镇市', '113.11', '40.4369', 'Fengzhen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152200', '兴安盟', '150000', '兴安盟', '2', '482', '137401', '中国,内蒙古自治区,兴安盟', '122.07', '46.0763', 'Hinggan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152201', '乌兰浩特市', '152200', '乌兰浩特', '3', '482', '137401', '中国,内蒙古自治区,兴安盟,乌兰浩特市', '122.064', '46.0624', 'Wulanhaote', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152202', '阿尔山市', '152200', '阿尔山', '3', '482', '137800', '中国,内蒙古自治区,兴安盟,阿尔山市', '119.943', '47.1772', 'Aershan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152221', '科尔沁右翼前旗', '152200', '科右前旗', '3', '482', '137423', '中国,内蒙古自治区,兴安盟,科尔沁右翼前旗', '121.953', '46.0795', 'Keyouqianqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152222', '科尔沁右翼中旗', '152200', '科右中旗', '3', '482', '29400', '中国,内蒙古自治区,兴安盟,科尔沁右翼中旗', '121.468', '45.056', 'Keyouzhongqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152223', '扎赉特旗', '152200', '扎赉特旗', '3', '482', '137600', '中国,内蒙古自治区,兴安盟,扎赉特旗', '122.912', '46.7267', 'Zhalaiteqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152224', '突泉县', '152200', '突泉', '3', '482', '137500', '中国,内蒙古自治区,兴安盟,突泉县', '121.594', '45.3819', 'Tuquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152500', '锡林郭勒盟', '150000', '锡林郭勒盟', '2', '479', '26000', '中国,内蒙古自治区,锡林郭勒盟', '116.091', '43.944', 'Xilin Gol', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152501', '二连浩特市', '152500', '二连浩特', '3', '479', '11100', '中国,内蒙古自治区,锡林郭勒盟,二连浩特市', '111.983', '43.653', 'Erlianhaote', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152502', '锡林浩特市', '152500', '锡林浩特', '3', '479', '26021', '中国,内蒙古自治区,锡林郭勒盟,锡林浩特市', '116.086', '43.9334', 'Xilinhaote', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152522', '阿巴嘎旗', '152500', '阿巴嘎旗', '3', '479', '11400', '中国,内蒙古自治区,锡林郭勒盟,阿巴嘎旗', '114.968', '44.0217', 'Abagaqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152523', '苏尼特左旗', '152500', '苏尼特左旗', '3', '479', '11300', '中国,内蒙古自治区,锡林郭勒盟,苏尼特左旗', '113.651', '43.8569', 'Sunitezuoqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152524', '苏尼特右旗', '152500', '苏尼特右旗', '3', '479', '11200', '中国,内蒙古自治区,锡林郭勒盟,苏尼特右旗', '112.657', '42.7469', 'Suniteyouqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152525', '东乌珠穆沁旗', '152500', '东乌旗', '3', '479', '26300', '中国,内蒙古自治区,锡林郭勒盟,东乌珠穆沁旗', '116.973', '45.5111', 'Dongwuqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152526', '西乌珠穆沁旗', '152500', '西乌旗', '3', '479', '26200', '中国,内蒙古自治区,锡林郭勒盟,西乌珠穆沁旗', '117.61', '44.5962', 'Xiwuqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152527', '太仆寺旗', '152500', '太仆寺旗', '3', '479', '27000', '中国,内蒙古自治区,锡林郭勒盟,太仆寺旗', '115.283', '41.8773', 'Taipusiqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152528', '镶黄旗', '152500', '镶黄旗', '3', '479', '13250', '中国,内蒙古自治区,锡林郭勒盟,镶黄旗', '113.845', '42.2393', 'Xianghuangqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152529', '正镶白旗', '152500', '正镶白旗', '3', '479', '13800', '中国,内蒙古自治区,锡林郭勒盟,正镶白旗', '115.001', '42.3071', 'Zhengxiangbaiqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152530', '正蓝旗', '152500', '正蓝旗', '3', '479', '27200', '中国,内蒙古自治区,锡林郭勒盟,正蓝旗', '116.004', '42.2523', 'Zhenglanqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152531', '多伦县', '152500', '多伦', '3', '479', '27300', '中国,内蒙古自治区,锡林郭勒盟,多伦县', '116.486', '42.203', 'Duolun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152900', '阿拉善盟', '150000', '阿拉善盟', '2', '483', '750306', '中国,内蒙古自治区,阿拉善盟', '105.706', '38.8448', 'Alxa', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152921', '阿拉善左旗', '152900', '阿拉善左旗', '3', '483', '750306', '中国,内蒙古自治区,阿拉善盟,阿拉善左旗', '105.675', '38.8293', 'Alashanzuoqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152922', '阿拉善右旗', '152900', '阿拉善右旗', '3', '483', '737300', '中国,内蒙古自治区,阿拉善盟,阿拉善右旗', '101.667', '39.2153', 'Alashanyouqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('152923', '额济纳旗', '152900', '额济纳旗', '3', '483', '735400', '中国,内蒙古自治区,阿拉善盟,额济纳旗', '101.069', '41.9675', 'Ejinaqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210000', '辽宁省', '100000', '辽宁', '1', '0', '0', '中国,辽宁省', '123.429', '41.7968', 'Liaoning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210100', '沈阳市', '210000', '沈阳', '2', '24', '110013', '中国,辽宁省,沈阳市', '123.429', '41.7968', 'Shenyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210102', '和平区', '210100', '和平', '3', '24', '110001', '中国,辽宁省,沈阳市,和平区', '123.42', '41.79', 'Heping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210103', '沈河区', '210100', '沈河', '3', '24', '110011', '中国,辽宁省,沈阳市,沈河区', '123.459', '41.7962', 'Shenhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210104', '大东区', '210100', '大东', '3', '24', '110041', '中国,辽宁省,沈阳市,大东区', '123.47', '41.8054', 'Dadong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210105', '皇姑区', '210100', '皇姑', '3', '24', '110031', '中国,辽宁省,沈阳市,皇姑区', '123.425', '41.8204', 'Huanggu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210106', '铁西区', '210100', '铁西', '3', '24', '110021', '中国,辽宁省,沈阳市,铁西区', '123.377', '41.8027', 'Tiexi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210111', '苏家屯区', '210100', '苏家屯', '3', '24', '110101', '中国,辽宁省,沈阳市,苏家屯区', '123.344', '41.6647', 'Sujiatun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210112', '浑南区', '210100', '浑南', '3', '24', '110015', '中国,辽宁省,沈阳市,浑南区', '123.458', '41.7195', 'Hunnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210113', '沈北新区', '210100', '沈北新区', '3', '24', '110121', '中国,辽宁省,沈阳市,沈北新区', '123.527', '42.053', 'Shenbeixinqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210114', '于洪区', '210100', '于洪', '3', '24', '110141', '中国,辽宁省,沈阳市,于洪区', '123.308', '41.794', 'Yuhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210122', '辽中县', '210100', '辽中', '3', '24', '110200', '中国,辽宁省,沈阳市,辽中县', '122.727', '41.513', 'Liaozhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210123', '康平县', '210100', '康平', '3', '24', '110500', '中国,辽宁省,沈阳市,康平县', '123.354', '42.7508', 'Kangping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210124', '法库县', '210100', '法库', '3', '24', '110400', '中国,辽宁省,沈阳市,法库县', '123.412', '42.5061', 'Faku', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210181', '新民市', '210100', '新民', '3', '24', '110300', '中国,辽宁省,沈阳市,新民市', '122.829', '41.9985', 'Xinmin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210200', '大连市', '210000', '大连', '2', '411', '116011', '中国,辽宁省,大连市', '121.619', '38.9146', 'Dalian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210202', '中山区', '210200', '中山', '3', '411', '116001', '中国,辽宁省,大连市,中山区', '121.645', '38.9186', 'Zhongshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210203', '西岗区', '210200', '西岗', '3', '411', '116011', '中国,辽宁省,大连市,西岗区', '121.612', '38.9147', 'Xigang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210204', '沙河口区', '210200', '沙河口', '3', '411', '116021', '中国,辽宁省,大连市,沙河口区', '121.58', '38.9054', 'Shahekou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210211', '甘井子区', '210200', '甘井子', '3', '411', '116033', '中国,辽宁省,大连市,甘井子区', '121.566', '38.9502', 'Ganjingzi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210212', '旅顺口区', '210200', '旅顺口', '3', '411', '116041', '中国,辽宁省,大连市,旅顺口区', '121.262', '38.8512', 'Lvshunkou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210213', '金州区', '210200', '金州', '3', '411', '116100', '中国,辽宁省,大连市,金州区', '121.719', '39.1004', 'Jinzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210224', '长海县', '210200', '长海', '3', '411', '116500', '中国,辽宁省,大连市,长海县', '122.589', '39.2727', 'Changhai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210281', '瓦房店市', '210200', '瓦房店', '3', '411', '116300', '中国,辽宁省,大连市,瓦房店市', '121.981', '39.6284', 'Wafangdian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210282', '普兰店市', '210200', '普兰店', '3', '411', '116200', '中国,辽宁省,大连市,普兰店市', '121.963', '39.3946', 'Pulandian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210283', '庄河市', '210200', '庄河', '3', '411', '116400', '中国,辽宁省,大连市,庄河市', '122.967', '39.6881', 'Zhuanghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210300', '鞍山市', '210000', '鞍山', '2', '412', '114001', '中国,辽宁省,鞍山市', '122.996', '41.1106', 'Anshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210302', '铁东区', '210300', '铁东', '3', '412', '114001', '中国,辽宁省,鞍山市,铁东区', '122.991', '41.0897', 'Tiedong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210303', '铁西区', '210300', '铁西', '3', '413', '114013', '中国,辽宁省,鞍山市,铁西区', '122.97', '41.1198', 'Tiexi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210304', '立山区', '210300', '立山', '3', '414', '114031', '中国,辽宁省,鞍山市,立山区', '123.029', '41.1501', 'Lishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210311', '千山区', '210300', '千山', '3', '415', '114041', '中国,辽宁省,鞍山市,千山区', '122.96', '41.0751', 'Qianshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210321', '台安县', '210300', '台安', '3', '417', '114100', '中国,辽宁省,鞍山市,台安县', '122.436', '41.4127', 'Taian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210323', '岫岩满族自治县', '210300', '岫岩', '3', '418', '114300', '中国,辽宁省,鞍山市,岫岩满族自治县', '123.289', '40.28', 'Xiuyan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210381', '海城市', '210300', '海城', '3', '416', '114200', '中国,辽宁省,鞍山市,海城市', '122.685', '40.8814', 'Haicheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210400', '抚顺市', '210000', '抚顺', '2', '24', '113008', '中国,辽宁省,抚顺市', '123.921', '41.876', 'Fushun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210402', '新抚区', '210400', '新抚', '3', '24', '113008', '中国,辽宁省,抚顺市,新抚区', '123.913', '41.862', 'Xinfu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210403', '东洲区', '210400', '东洲', '3', '24', '113003', '中国,辽宁省,抚顺市,东洲区', '124.038', '41.8519', 'Dongzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210404', '望花区', '210400', '望花', '3', '24', '113001', '中国,辽宁省,抚顺市,望花区', '123.783', '41.8553', 'Wanghua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210411', '顺城区', '210400', '顺城', '3', '24', '113006', '中国,辽宁省,抚顺市,顺城区', '123.945', '41.8832', 'Shuncheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210421', '抚顺县', '210400', '抚顺', '3', '24', '113006', '中国,辽宁省,抚顺市,抚顺县', '124.178', '41.7122', 'Fushun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210422', '新宾满族自治县', '210400', '新宾', '3', '24', '113200', '中国,辽宁省,抚顺市,新宾满族自治县', '125.04', '41.7341', 'Xinbin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210423', '清原满族自治县', '210400', '清原', '3', '24', '113300', '中国,辽宁省,抚顺市,清原满族自治县', '124.928', '42.1022', 'Qingyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210500', '本溪市', '210000', '本溪', '2', '414', '117000', '中国,辽宁省,本溪市', '123.771', '41.2979', 'Benxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210502', '平山区', '210500', '平山', '3', '414', '117000', '中国,辽宁省,本溪市,平山区', '123.769', '41.2997', 'Pingshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210503', '溪湖区', '210500', '溪湖', '3', '414', '117002', '中国,辽宁省,本溪市,溪湖区', '123.768', '41.3292', 'Xihu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210504', '明山区', '210500', '明山', '3', '414', '117021', '中国,辽宁省,本溪市,明山区', '123.817', '41.3083', 'Mingshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210505', '南芬区', '210500', '南芬', '3', '414', '117014', '中国,辽宁省,本溪市,南芬区', '123.745', '41.1006', 'Nanfen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210521', '本溪满族自治县', '210500', '本溪', '3', '414', '117100', '中国,辽宁省,本溪市,本溪满族自治县', '124.127', '41.3006', 'Benxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210522', '桓仁满族自治县', '210500', '桓仁', '3', '414', '117200', '中国,辽宁省,本溪市,桓仁满族自治县', '125.361', '41.268', 'Huanren', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210600', '丹东市', '210000', '丹东', '2', '415', '118000', '中国,辽宁省,丹东市', '124.383', '40.1243', 'Dandong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210602', '元宝区', '210600', '元宝', '3', '415', '118000', '中国,辽宁省,丹东市,元宝区', '124.396', '40.1365', 'Yuanbao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210603', '振兴区', '210600', '振兴', '3', '415', '118002', '中国,辽宁省,丹东市,振兴区', '124.36', '40.1049', 'Zhenxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210604', '振安区', '210600', '振安', '3', '415', '118001', '中国,辽宁省,丹东市,振安区', '124.428', '40.1583', 'Zhenan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210624', '宽甸满族自治县', '210600', '宽甸', '3', '415', '118200', '中国,辽宁省,丹东市,宽甸满族自治县', '124.782', '40.7319', 'Kuandian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210681', '东港市', '210600', '东港', '3', '415', '118300', '中国,辽宁省,丹东市,东港市', '124.163', '39.8626', 'Donggang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210682', '凤城市', '210600', '凤城', '3', '415', '118100', '中国,辽宁省,丹东市,凤城市', '124.067', '40.453', 'Fengcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210700', '锦州市', '210000', '锦州', '2', '416', '121000', '中国,辽宁省,锦州市', '121.136', '41.1193', 'Jinzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210702', '古塔区', '210700', '古塔', '3', '416', '121001', '中国,辽宁省,锦州市,古塔区', '121.128', '41.1172', 'Guta', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210703', '凌河区', '210700', '凌河', '3', '416', '121000', '中国,辽宁省,锦州市,凌河区', '121.151', '41.115', 'Linghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210711', '太和区', '210700', '太和', '3', '416', '121011', '中国,辽宁省,锦州市,太和区', '121.104', '41.1093', 'Taihe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210726', '黑山县', '210700', '黑山', '3', '416', '121400', '中国,辽宁省,锦州市,黑山县', '122.121', '41.6942', 'Heishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210727', '义县', '210700', '义县', '3', '416', '121100', '中国,辽宁省,锦州市,义县', '121.24', '41.5346', 'Yixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210781', '凌海市', '210700', '凌海', '3', '416', '121200', '中国,辽宁省,锦州市,凌海市', '121.357', '41.1737', 'Linghai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210782', '北镇市', '210700', '北镇', '3', '416', '121300', '中国,辽宁省,锦州市,北镇市', '121.799', '41.5954', 'Beizhen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210800', '营口市', '210000', '营口', '2', '417', '115003', '中国,辽宁省,营口市', '122.235', '40.6674', 'Yingkou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210802', '站前区', '210800', '站前', '3', '417', '115002', '中国,辽宁省,营口市,站前区', '122.259', '40.6727', 'Zhanqian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210803', '西市区', '210800', '西市', '3', '417', '115004', '中国,辽宁省,营口市,西市区', '122.206', '40.6664', 'Xishi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210804', '鲅鱼圈区', '210800', '鲅鱼圈', '3', '417', '115007', '中国,辽宁省,营口市,鲅鱼圈区', '122.133', '40.2687', 'Bayuquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210811', '老边区', '210800', '老边', '3', '417', '115005', '中国,辽宁省,营口市,老边区', '122.38', '40.6803', 'Laobian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210881', '盖州市', '210800', '盖州', '3', '417', '115200', '中国,辽宁省,营口市,盖州市', '122.355', '40.4045', 'Gaizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210882', '大石桥市', '210800', '大石桥', '3', '417', '115100', '中国,辽宁省,营口市,大石桥市', '122.509', '40.6457', 'Dashiqiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210900', '阜新市', '210000', '阜新', '2', '418', '123000', '中国,辽宁省,阜新市', '121.649', '42.0118', 'Fuxin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210902', '海州区', '210900', '海州', '3', '418', '123000', '中国,辽宁省,阜新市,海州区', '121.656', '42.0134', 'Haizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210903', '新邱区', '210900', '新邱', '3', '418', '123005', '中国,辽宁省,阜新市,新邱区', '121.793', '42.0918', 'Xinqiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210904', '太平区', '210900', '太平', '3', '418', '123003', '中国,辽宁省,阜新市,太平区', '121.679', '42.0107', 'Taiping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210905', '清河门区', '210900', '清河门', '3', '418', '123006', '中国,辽宁省,阜新市,清河门区', '121.416', '41.7831', 'Qinghemen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210911', '细河区', '210900', '细河', '3', '418', '123000', '中国,辽宁省,阜新市,细河区', '121.68', '42.0253', 'Xihe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210921', '阜新蒙古族自治县', '210900', '阜新', '3', '418', '123100', '中国,辽宁省,阜新市,阜新蒙古族自治县', '121.758', '42.0651', 'Fuxin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('210922', '彰武县', '210900', '彰武', '3', '418', '123200', '中国,辽宁省,阜新市,彰武县', '122.54', '42.3862', 'Zhangwu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211000', '辽阳市', '210000', '辽阳', '2', '419', '111000', '中国,辽宁省,辽阳市', '123.182', '41.2694', 'Liaoyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211002', '白塔区', '211000', '白塔', '3', '419', '111000', '中国,辽宁省,辽阳市,白塔区', '123.175', '41.2702', 'Baita', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211003', '文圣区', '211000', '文圣', '3', '419', '111000', '中国,辽宁省,辽阳市,文圣区', '123.185', '41.2627', 'Wensheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211004', '宏伟区', '211000', '宏伟', '3', '419', '111003', '中国,辽宁省,辽阳市,宏伟区', '123.193', '41.2185', 'Hongwei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211005', '弓长岭区', '211000', '弓长岭', '3', '419', '111008', '中国,辽宁省,辽阳市,弓长岭区', '123.42', '41.1518', 'Gongchangling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211011', '太子河区', '211000', '太子河', '3', '419', '111000', '中国,辽宁省,辽阳市,太子河区', '123.182', '41.2534', 'Taizihe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211021', '辽阳县', '211000', '辽阳', '3', '419', '111200', '中国,辽宁省,辽阳市,辽阳县', '123.106', '41.2054', 'Liaoyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211081', '灯塔市', '211000', '灯塔', '3', '419', '111300', '中国,辽宁省,辽阳市,灯塔市', '123.339', '41.4261', 'Dengta', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211100', '盘锦市', '210000', '盘锦', '2', '427', '124010', '中国,辽宁省,盘锦市', '122.07', '41.1245', 'Panjin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211102', '双台子区', '211100', '双台子', '3', '427', '124000', '中国,辽宁省,盘锦市,双台子区', '122.06', '41.1906', 'Shuangtaizi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211103', '兴隆台区', '211100', '兴隆台', '3', '427', '124010', '中国,辽宁省,盘锦市,兴隆台区', '122.075', '41.124', 'Xinglongtai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211121', '大洼县', '211100', '大洼', '3', '427', '124200', '中国,辽宁省,盘锦市,大洼县', '122.082', '41.0024', 'Dawa', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211122', '盘山县', '211100', '盘山', '3', '427', '124000', '中国,辽宁省,盘锦市,盘山县', '121.998', '41.238', 'Panshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211200', '铁岭市', '210000', '铁岭', '2', '24', '112000', '中国,辽宁省,铁岭市', '123.844', '42.2906', 'Tieling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211202', '银州区', '211200', '银州', '3', '24', '112000', '中国,辽宁省,铁岭市,银州区', '123.857', '42.2951', 'Yinzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211204', '清河区', '211200', '清河', '3', '24', '112003', '中国,辽宁省,铁岭市,清河区', '124.159', '42.5468', 'Qinghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211221', '铁岭县', '211200', '铁岭', '3', '24', '112000', '中国,辽宁省,铁岭市,铁岭县', '123.773', '42.225', 'Tieling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211223', '西丰县', '211200', '西丰', '3', '24', '112400', '中国,辽宁省,铁岭市,西丰县', '124.73', '42.7376', 'Xifeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211224', '昌图县', '211200', '昌图', '3', '24', '112500', '中国,辽宁省,铁岭市,昌图县', '124.112', '42.7843', 'Changtu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211281', '调兵山市', '211200', '调兵山', '3', '24', '112700', '中国,辽宁省,铁岭市,调兵山市', '123.567', '42.4675', 'Diaobingshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211282', '开原市', '211200', '开原', '3', '24', '112300', '中国,辽宁省,铁岭市,开原市', '124.039', '42.5458', 'Kaiyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211300', '朝阳市', '210000', '朝阳', '2', '421', '122000', '中国,辽宁省,朝阳市', '120.451', '41.5768', 'Chaoyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211302', '双塔区', '211300', '双塔', '3', '421', '122000', '中国,辽宁省,朝阳市,双塔区', '120.454', '41.566', 'Shuangta', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211303', '龙城区', '211300', '龙城', '3', '421', '122000', '中国,辽宁省,朝阳市,龙城区', '120.437', '41.5926', 'Longcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211321', '朝阳县', '211300', '朝阳', '3', '421', '122000', '中国,辽宁省,朝阳市,朝阳县', '120.174', '41.4324', 'Chaoyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211322', '建平县', '211300', '建平', '3', '421', '122400', '中国,辽宁省,朝阳市,建平县', '119.644', '41.4031', 'Jianping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211324', '喀喇沁左翼蒙古族自治县', '211300', '喀喇沁左翼', '3', '421', '122300', '中国,辽宁省,朝阳市,喀喇沁左翼蒙古族自治县', '119.742', '41.128', 'Kalaqinzuoyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211381', '北票市', '211300', '北票', '3', '421', '122100', '中国,辽宁省,朝阳市,北票市', '120.77', '41.802', 'Beipiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211382', '凌源市', '211300', '凌源', '3', '421', '122500', '中国,辽宁省,朝阳市,凌源市', '119.401', '41.2456', 'Lingyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211400', '葫芦岛市', '210000', '葫芦岛', '2', '429', '125000', '中国,辽宁省,葫芦岛市', '120.856', '40.7556', 'Huludao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211402', '连山区', '211400', '连山', '3', '429', '125001', '中国,辽宁省,葫芦岛市,连山区', '120.864', '40.7555', 'Lianshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211403', '龙港区', '211400', '龙港', '3', '429', '125003', '中国,辽宁省,葫芦岛市,龙港区', '120.949', '40.7192', 'Longgang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211404', '南票区', '211400', '南票', '3', '429', '125027', '中国,辽宁省,葫芦岛市,南票区', '120.75', '41.1071', 'Nanpiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211421', '绥中县', '211400', '绥中', '3', '429', '125200', '中国,辽宁省,葫芦岛市,绥中县', '120.345', '40.3255', 'Suizhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211422', '建昌县', '211400', '建昌', '3', '429', '125300', '中国,辽宁省,葫芦岛市,建昌县', '119.838', '40.8245', 'Jianchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211481', '兴城市', '211400', '兴城', '3', '429', '125100', '中国,辽宁省,葫芦岛市,兴城市', '120.725', '40.6149', 'Xingcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211500', '金普新区', '210000', '金普新区', '2', '411', '116100', '中国,辽宁省,金普新区', '121.79', '39.0555', 'Jinpuxinqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211501', '金州新区', '211500', '金州新区', '3', '411', '116100', '中国,辽宁省,金普新区,金州新区', '121.785', '39.0523', 'Jinzhouxinqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211502', '普湾新区', '211500', '普湾新区', '3', '411', '116200', '中国,辽宁省,金普新区,普湾新区', '121.813', '39.3301', 'Puwanxinqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('211503', '保税区', '211500', '保税区', '3', '411', '116100', '中国,辽宁省,金普新区,保税区', '121.943', '39.2246', 'Baoshuiqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220000', '吉林省', '100000', '吉林', '1', '0', '0', '中国,吉林省', '125.325', '43.8868', 'Jilin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220100', '长春市', '220000', '长春', '2', '431', '130022', '中国,吉林省,长春市', '125.325', '43.8868', 'Changchun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220102', '南关区', '220100', '南关', '3', '431', '130022', '中国,吉林省,长春市,南关区', '125.35', '43.864', 'Nanguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220103', '宽城区', '220100', '宽城', '3', '431', '130051', '中国,吉林省,长春市,宽城区', '125.326', '43.9018', 'Kuancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220104', '朝阳区', '220100', '朝阳', '3', '431', '130012', '中国,吉林省,长春市,朝阳区', '125.288', '43.8334', 'Chaoyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220105', '二道区', '220100', '二道', '3', '431', '130031', '中国,吉林省,长春市,二道区', '125.374', '43.865', 'Erdao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220106', '绿园区', '220100', '绿园', '3', '431', '130062', '中国,吉林省,长春市,绿园区', '125.256', '43.8805', 'Lvyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220112', '双阳区', '220100', '双阳', '3', '431', '130600', '中国,吉林省,长春市,双阳区', '125.656', '43.528', 'Shuangyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220113', '九台区', '220100', '九台', '3', '431', '130500', '中国,吉林省,长春市,九台区', '125.84', '44.1516', 'Jiutai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220122', '农安县', '220100', '农安', '3', '431', '130200', '中国,吉林省,长春市,农安县', '125.185', '44.4327', 'Nongan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220182', '榆树市', '220100', '榆树', '3', '431', '130400', '中国,吉林省,长春市,榆树市', '126.557', '44.8252', 'Yushu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220183', '德惠市', '220100', '德惠', '3', '431', '130300', '中国,吉林省,长春市,德惠市', '125.705', '44.5372', 'Dehui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220200', '吉林市', '220000', '吉林', '2', '432', '132011', '中国,吉林省,吉林市', '126.553', '43.8436', 'Jilin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220202', '昌邑区', '220200', '昌邑', '3', '432', '132002', '中国,吉林省,吉林市,昌邑区', '126.574', '43.8818', 'Changyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220203', '龙潭区', '220200', '龙潭', '3', '432', '132021', '中国,吉林省,吉林市,龙潭区', '126.562', '43.9105', 'Longtan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220204', '船营区', '220200', '船营', '3', '432', '132011', '中国,吉林省,吉林市,船营区', '126.541', '43.8334', 'Chuanying', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220211', '丰满区', '220200', '丰满', '3', '432', '132013', '中国,吉林省,吉林市,丰满区', '126.562', '43.8224', 'Fengman', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220221', '永吉县', '220200', '永吉', '3', '432', '132200', '中国,吉林省,吉林市,永吉县', '126.496', '43.672', 'Yongji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220281', '蛟河市', '220200', '蛟河', '3', '432', '132500', '中国,吉林省,吉林市,蛟河市', '127.344', '43.727', 'Jiaohe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220282', '桦甸市', '220200', '桦甸', '3', '432', '132400', '中国,吉林省,吉林市,桦甸市', '126.746', '42.9721', 'Huadian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220283', '舒兰市', '220200', '舒兰', '3', '432', '132600', '中国,吉林省,吉林市,舒兰市', '126.965', '44.4058', 'Shulan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220284', '磐石市', '220200', '磐石', '3', '432', '132300', '中国,吉林省,吉林市,磐石市', '126.062', '42.9463', 'Panshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220300', '四平市', '220000', '四平', '2', '434', '136000', '中国,吉林省,四平市', '124.371', '43.1703', 'Siping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220302', '铁西区', '220300', '铁西', '3', '434', '136000', '中国,吉林省,四平市,铁西区', '124.374', '43.1746', 'Tiexi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220303', '铁东区', '220300', '铁东', '3', '434', '136001', '中国,吉林省,四平市,铁东区', '124.41', '43.1624', 'Tiedong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220322', '梨树县', '220300', '梨树', '3', '434', '136500', '中国,吉林省,四平市,梨树县', '124.336', '43.3072', 'Lishu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220323', '伊通满族自治县', '220300', '伊通', '3', '434', '130700', '中国,吉林省,四平市,伊通满族自治县', '125.306', '43.3443', 'Yitong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220381', '公主岭市', '220300', '公主岭', '3', '434', '136100', '中国,吉林省,四平市,公主岭市', '124.823', '43.5045', 'Gongzhuling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220382', '双辽市', '220300', '双辽', '3', '434', '136400', '中国,吉林省,四平市,双辽市', '123.501', '43.521', 'Shuangliao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220400', '辽源市', '220000', '辽源', '2', '437', '136200', '中国,吉林省,辽源市', '125.145', '42.9027', 'Liaoyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220402', '龙山区', '220400', '龙山', '3', '437', '136200', '中国,吉林省,辽源市,龙山区', '125.136', '42.8971', 'Longshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220403', '西安区', '220400', '西安', '3', '437', '136201', '中国,吉林省,辽源市,西安区', '125.149', '42.927', 'Xian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220421', '东丰县', '220400', '东丰', '3', '437', '136300', '中国,吉林省,辽源市,东丰县', '125.532', '42.6783', 'Dongfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220422', '东辽县', '220400', '东辽', '3', '437', '136600', '中国,吉林省,辽源市,东辽县', '124.986', '42.9249', 'Dongliao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220500', '通化市', '220000', '通化', '2', '435', '134001', '中国,吉林省,通化市', '125.937', '41.7212', 'Tonghua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220502', '东昌区', '220500', '东昌', '3', '435', '134001', '中国,吉林省,通化市,东昌区', '125.955', '41.7285', 'Dongchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220503', '二道江区', '220500', '二道江', '3', '435', '134003', '中国,吉林省,通化市,二道江区', '126.043', '41.7741', 'Erdaojiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220521', '通化县', '220500', '通化', '3', '435', '134100', '中国,吉林省,通化市,通化县', '125.759', '41.6793', 'Tonghua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220523', '辉南县', '220500', '辉南', '3', '435', '135100', '中国,吉林省,通化市,辉南县', '126.047', '42.685', 'Huinan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220524', '柳河县', '220500', '柳河', '3', '435', '135300', '中国,吉林省,通化市,柳河县', '125.745', '42.2847', 'Liuhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220581', '梅河口市', '220500', '梅河口', '3', '435', '135000', '中国,吉林省,通化市,梅河口市', '125.71', '42.5383', 'Meihekou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220582', '集安市', '220500', '集安', '3', '435', '134200', '中国,吉林省,通化市,集安市', '126.188', '41.1227', 'Jian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220600', '白山市', '220000', '白山', '2', '439', '134300', '中国,吉林省,白山市', '126.428', '41.9425', 'Baishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220602', '浑江区', '220600', '浑江', '3', '439', '134300', '中国,吉林省,白山市,浑江区', '126.422', '41.9457', 'Hunjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220605', '江源区', '220600', '江源', '3', '439', '134700', '中国,吉林省,白山市,江源区', '126.591', '42.0566', 'Jiangyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220621', '抚松县', '220600', '抚松', '3', '439', '134500', '中国,吉林省,白山市,抚松县', '127.28', '42.342', 'Fusong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220622', '靖宇县', '220600', '靖宇', '3', '439', '135200', '中国,吉林省,白山市,靖宇县', '126.813', '42.3886', 'Jingyu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220623', '长白朝鲜族自治县', '220600', '长白', '3', '439', '134400', '中国,吉林省,白山市,长白朝鲜族自治县', '128.2', '41.42', 'Changbai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220681', '临江市', '220600', '临江', '3', '439', '134600', '中国,吉林省,白山市,临江市', '126.918', '41.8114', 'Linjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220700', '松原市', '220000', '松原', '2', '438', '138000', '中国,吉林省,松原市', '124.824', '45.1182', 'Songyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220702', '宁江区', '220700', '宁江', '3', '438', '138000', '中国,吉林省,松原市,宁江区', '124.817', '45.1717', 'Ningjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220721', '前郭尔罗斯蒙古族自治县', '220700', '前郭尔罗斯', '3', '438', '138000', '中国,吉林省,松原市,前郭尔罗斯蒙古族自治县', '124.824', '45.1173', 'Qianguoerluosi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220722', '长岭县', '220700', '长岭', '3', '438', '131500', '中国,吉林省,松原市,长岭县', '123.967', '44.2758', 'Changling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220723', '乾安县', '220700', '乾安', '3', '438', '131400', '中国,吉林省,松原市,乾安县', '124.027', '45.0107', 'Qianan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220781', '扶余市', '220700', '扶余', '3', '438', '131200', '中国,吉林省,松原市,扶余市', '126.043', '44.9862', 'Fuyu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220800', '白城市', '220000', '白城', '2', '436', '137000', '中国,吉林省,白城市', '122.841', '45.619', 'Baicheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220802', '洮北区', '220800', '洮北', '3', '436', '137000', '中国,吉林省,白城市,洮北区', '122.851', '45.6217', 'Taobei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220821', '镇赉县', '220800', '镇赉', '3', '436', '137300', '中国,吉林省,白城市,镇赉县', '123.199', '45.8478', 'Zhenlai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220822', '通榆县', '220800', '通榆', '3', '436', '137200', '中国,吉林省,白城市,通榆县', '123.088', '44.8139', 'Tongyu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220881', '洮南市', '220800', '洮南', '3', '436', '137100', '中国,吉林省,白城市,洮南市', '122.788', '45.335', 'Taonan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('220882', '大安市', '220800', '大安', '3', '436', '131300', '中国,吉林省,白城市,大安市', '124.295', '45.5085', 'Daan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('222400', '延边朝鲜族自治州', '220000', '延边', '2', '433', '133000', '中国,吉林省,延边朝鲜族自治州', '129.513', '42.9048', 'Yanbian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('222401', '延吉市', '222400', '延吉', '3', '433', '133000', '中国,吉林省,延边朝鲜族自治州,延吉市', '129.514', '42.9068', 'Yanji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('222402', '图们市', '222400', '图们', '3', '433', '133100', '中国,吉林省,延边朝鲜族自治州,图们市', '129.844', '42.968', 'Tumen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('222403', '敦化市', '222400', '敦化', '3', '433', '133700', '中国,吉林省,延边朝鲜族自治州,敦化市', '128.232', '43.373', 'Dunhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('222404', '珲春市', '222400', '珲春', '3', '433', '133300', '中国,吉林省,延边朝鲜族自治州,珲春市', '130.366', '42.8624', 'Hunchun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('222405', '龙井市', '222400', '龙井', '3', '433', '133400', '中国,吉林省,延边朝鲜族自治州,龙井市', '129.426', '42.768', 'Longjing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('222406', '和龙市', '222400', '和龙', '3', '433', '133500', '中国,吉林省,延边朝鲜族自治州,和龙市', '129.011', '42.5464', 'Helong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('222424', '汪清县', '222400', '汪清', '3', '433', '133200', '中国,吉林省,延边朝鲜族自治州,汪清县', '129.771', '43.3128', 'Wangqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('222426', '安图县', '222400', '安图', '3', '433', '133600', '中国,吉林省,延边朝鲜族自治州,安图县', '128.906', '43.1153', 'Antu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230000', '黑龙江省', '100000', '黑龙江', '1', '0', '0', '中国,黑龙江省', '126.642', '45.757', 'Heilongjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230100', '哈尔滨市', '230000', '哈尔滨', '2', '451', '150010', '中国,黑龙江省,哈尔滨市', '126.642', '45.757', 'Harbin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230102', '道里区', '230100', '道里', '3', '451', '150010', '中国,黑龙江省,哈尔滨市,道里区', '126.617', '45.7559', 'Daoli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230103', '南岗区', '230100', '南岗', '3', '451', '150006', '中国,黑龙江省,哈尔滨市,南岗区', '126.669', '45.76', 'Nangang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230104', '道外区', '230100', '道外', '3', '451', '150020', '中国,黑龙江省,哈尔滨市,道外区', '126.649', '45.7919', 'Daowai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230108', '平房区', '230100', '平房', '3', '451', '150060', '中国,黑龙江省,哈尔滨市,平房区', '126.637', '45.5978', 'Pingfang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230109', '松北区', '230100', '松北', '3', '451', '150028', '中国,黑龙江省,哈尔滨市,松北区', '126.563', '45.8083', 'Songbei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230110', '香坊区', '230100', '香坊', '3', '451', '150036', '中国,黑龙江省,哈尔滨市,香坊区', '126.68', '45.7238', 'Xiangfang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230111', '呼兰区', '230100', '呼兰', '3', '451', '150500', '中国,黑龙江省,哈尔滨市,呼兰区', '126.588', '45.889', 'Hulan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230112', '阿城区', '230100', '阿城', '3', '451', '150300', '中国,黑龙江省,哈尔滨市,阿城区', '126.975', '45.5414', 'Acheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230113', '双城区', '230100', '双城', '3', '451', '150100', '中国,黑龙江省,哈尔滨市,双城区', '126.309', '45.3779', 'Shuangcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230123', '依兰县', '230100', '依兰', '3', '451', '154800', '中国,黑龙江省,哈尔滨市,依兰县', '129.568', '46.3247', 'Yilan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230124', '方正县', '230100', '方正', '3', '451', '150800', '中国,黑龙江省,哈尔滨市,方正县', '128.83', '45.8516', 'Fangzheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230125', '宾县', '230100', '宾县', '3', '451', '150400', '中国,黑龙江省,哈尔滨市,宾县', '127.487', '45.755', 'Binxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230126', '巴彦县', '230100', '巴彦', '3', '451', '151800', '中国,黑龙江省,哈尔滨市,巴彦县', '127.408', '46.0815', 'Bayan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230127', '木兰县', '230100', '木兰', '3', '451', '151900', '中国,黑龙江省,哈尔滨市,木兰县', '128.045', '45.9494', 'Mulan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230128', '通河县', '230100', '通河', '3', '451', '150900', '中国,黑龙江省,哈尔滨市,通河县', '128.746', '45.9901', 'Tonghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230129', '延寿县', '230100', '延寿', '3', '451', '150700', '中国,黑龙江省,哈尔滨市,延寿县', '128.334', '45.4554', 'Yanshou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230183', '尚志市', '230100', '尚志', '3', '451', '150600', '中国,黑龙江省,哈尔滨市,尚志市', '127.962', '45.2174', 'Shangzhi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230184', '五常市', '230100', '五常', '3', '451', '150200', '中国,黑龙江省,哈尔滨市,五常市', '127.168', '44.9318', 'Wuchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230200', '齐齐哈尔市', '230000', '齐齐哈尔', '2', '452', '161005', '中国,黑龙江省,齐齐哈尔市', '123.953', '47.3481', 'Qiqihar', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230202', '龙沙区', '230200', '龙沙', '3', '452', '161000', '中国,黑龙江省,齐齐哈尔市,龙沙区', '123.958', '47.3178', 'Longsha', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230203', '建华区', '230200', '建华', '3', '452', '161006', '中国,黑龙江省,齐齐哈尔市,建华区', '124.013', '47.3672', 'Jianhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230204', '铁锋区', '230200', '铁锋', '3', '452', '161000', '中国,黑龙江省,齐齐哈尔市,铁锋区', '123.978', '47.3408', 'Tiefeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230205', '昂昂溪区', '230200', '昂昂溪', '3', '452', '161031', '中国,黑龙江省,齐齐哈尔市,昂昂溪区', '123.822', '47.1551', 'Angangxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230206', '富拉尔基区', '230200', '富拉尔基', '3', '452', '161041', '中国,黑龙江省,齐齐哈尔市,富拉尔基区', '123.629', '47.2088', 'Fulaerji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230207', '碾子山区', '230200', '碾子山', '3', '452', '161046', '中国,黑龙江省,齐齐哈尔市,碾子山区', '122.882', '47.5166', 'Nianzishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230208', '梅里斯达斡尔族区', '230200', '梅里斯', '3', '452', '161021', '中国,黑龙江省,齐齐哈尔市,梅里斯达斡尔族区', '123.753', '47.3095', 'Meilisi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230221', '龙江县', '230200', '龙江', '3', '452', '161100', '中国,黑龙江省,齐齐哈尔市,龙江县', '123.205', '47.3387', 'Longjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230223', '依安县', '230200', '依安', '3', '452', '161500', '中国,黑龙江省,齐齐哈尔市,依安县', '125.309', '47.8931', 'Yian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230224', '泰来县', '230200', '泰来', '3', '452', '162400', '中国,黑龙江省,齐齐哈尔市,泰来县', '123.423', '46.3939', 'Tailai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230225', '甘南县', '230200', '甘南', '3', '452', '162100', '中国,黑龙江省,齐齐哈尔市,甘南县', '123.503', '47.9244', 'Gannan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230227', '富裕县', '230200', '富裕', '3', '452', '161200', '中国,黑龙江省,齐齐哈尔市,富裕县', '124.475', '47.7743', 'Fuyu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230229', '克山县', '230200', '克山', '3', '452', '161600', '中国,黑龙江省,齐齐哈尔市,克山县', '125.874', '48.0326', 'Keshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230230', '克东县', '230200', '克东', '3', '452', '164800', '中国,黑龙江省,齐齐哈尔市,克东县', '126.249', '48.0383', 'Kedong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230231', '拜泉县', '230200', '拜泉', '3', '452', '164700', '中国,黑龙江省,齐齐哈尔市,拜泉县', '126.092', '47.6082', 'Baiquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230281', '讷河市', '230200', '讷河', '3', '452', '161300', '中国,黑龙江省,齐齐哈尔市,讷河市', '124.877', '48.4839', 'Nehe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230300', '鸡西市', '230000', '鸡西', '2', '467', '158100', '中国,黑龙江省,鸡西市', '130.976', '45.3', 'Jixi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230302', '鸡冠区', '230300', '鸡冠', '3', '467', '158100', '中国,黑龙江省,鸡西市,鸡冠区', '130.981', '45.304', 'Jiguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230303', '恒山区', '230300', '恒山', '3', '467', '158130', '中国,黑龙江省,鸡西市,恒山区', '130.905', '45.2107', 'Hengshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230304', '滴道区', '230300', '滴道', '3', '467', '158150', '中国,黑龙江省,鸡西市,滴道区', '130.848', '45.3511', 'Didao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230305', '梨树区', '230300', '梨树', '3', '467', '158160', '中国,黑龙江省,鸡西市,梨树区', '130.698', '45.0904', 'Lishu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230306', '城子河区', '230300', '城子河', '3', '467', '158170', '中国,黑龙江省,鸡西市,城子河区', '131.011', '45.3369', 'Chengzihe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230307', '麻山区', '230300', '麻山', '3', '467', '158180', '中国,黑龙江省,鸡西市,麻山区', '130.478', '45.2121', 'Mashan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230321', '鸡东县', '230300', '鸡东', '3', '467', '158200', '中国,黑龙江省,鸡西市,鸡东县', '131.124', '45.2603', 'Jidong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230381', '虎林市', '230300', '虎林', '3', '467', '158400', '中国,黑龙江省,鸡西市,虎林市', '132.937', '45.7629', 'Hulin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230382', '密山市', '230300', '密山', '3', '467', '158300', '中国,黑龙江省,鸡西市,密山市', '131.846', '45.5297', 'Mishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230400', '鹤岗市', '230000', '鹤岗', '2', '468', '154100', '中国,黑龙江省,鹤岗市', '130.277', '47.3321', 'Hegang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230402', '向阳区', '230400', '向阳', '3', '468', '154100', '中国,黑龙江省,鹤岗市,向阳区', '130.294', '47.3425', 'Xiangyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230403', '工农区', '230400', '工农', '3', '468', '154101', '中国,黑龙江省,鹤岗市,工农区', '130.275', '47.3187', 'Gongnong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230404', '南山区', '230400', '南山', '3', '468', '154104', '中国,黑龙江省,鹤岗市,南山区', '130.277', '47.314', 'Nanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230405', '兴安区', '230400', '兴安', '3', '468', '154102', '中国,黑龙江省,鹤岗市,兴安区', '130.24', '47.2526', 'Xingan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230406', '东山区', '230400', '东山', '3', '468', '154106', '中国,黑龙江省,鹤岗市,东山区', '130.317', '47.3385', 'Dongshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230407', '兴山区', '230400', '兴山', '3', '468', '154105', '中国,黑龙江省,鹤岗市,兴山区', '130.293', '47.3578', 'Xingshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230421', '萝北县', '230400', '萝北', '3', '468', '154200', '中国,黑龙江省,鹤岗市,萝北县', '130.833', '47.5796', 'Luobei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230422', '绥滨县', '230400', '绥滨', '3', '468', '156200', '中国,黑龙江省,鹤岗市,绥滨县', '131.86', '47.2903', 'Suibin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230500', '双鸭山市', '230000', '双鸭山', '2', '469', '155100', '中国,黑龙江省,双鸭山市', '131.157', '46.6434', 'Shuangyashan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230502', '尖山区', '230500', '尖山', '3', '469', '155100', '中国,黑龙江省,双鸭山市,尖山区', '131.158', '46.6464', 'Jianshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230503', '岭东区', '230500', '岭东', '3', '469', '155120', '中国,黑龙江省,双鸭山市,岭东区', '131.165', '46.5904', 'Lingdong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230505', '四方台区', '230500', '四方台', '3', '469', '155130', '中国,黑龙江省,双鸭山市,四方台区', '131.336', '46.595', 'Sifangtai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230506', '宝山区', '230500', '宝山', '3', '469', '155131', '中国,黑龙江省,双鸭山市,宝山区', '131.402', '46.5772', 'Baoshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230521', '集贤县', '230500', '集贤', '3', '469', '155900', '中国,黑龙江省,双鸭山市,集贤县', '131.141', '46.7268', 'Jixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230522', '友谊县', '230500', '友谊', '3', '469', '155800', '中国,黑龙江省,双鸭山市,友谊县', '131.808', '46.7674', 'Youyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230523', '宝清县', '230500', '宝清', '3', '469', '155600', '中国,黑龙江省,双鸭山市,宝清县', '132.197', '46.3272', 'Baoqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230524', '饶河县', '230500', '饶河', '3', '469', '155700', '中国,黑龙江省,双鸭山市,饶河县', '134.02', '46.799', 'Raohe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230600', '大庆市', '230000', '大庆', '2', '459', '163000', '中国,黑龙江省,大庆市', '125.113', '46.5907', 'Daqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230602', '萨尔图区', '230600', '萨尔图', '3', '459', '163001', '中国,黑龙江省,大庆市,萨尔图区', '125.088', '46.5936', 'Saertu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230603', '龙凤区', '230600', '龙凤', '3', '459', '163711', '中国,黑龙江省,大庆市,龙凤区', '125.117', '46.5327', 'Longfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230604', '让胡路区', '230600', '让胡路', '3', '459', '163712', '中国,黑龙江省,大庆市,让胡路区', '124.871', '46.6522', 'Ranghulu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230605', '红岗区', '230600', '红岗', '3', '459', '163511', '中国,黑龙江省,大庆市,红岗区', '124.892', '46.4013', 'Honggang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230606', '大同区', '230600', '大同', '3', '459', '163515', '中国,黑龙江省,大庆市,大同区', '124.816', '46.033', 'Datong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230621', '肇州县', '230600', '肇州', '3', '459', '166400', '中国,黑龙江省,大庆市,肇州县', '125.271', '45.7041', 'Zhaozhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230622', '肇源县', '230600', '肇源', '3', '459', '166500', '中国,黑龙江省,大庆市,肇源县', '125.085', '45.5203', 'Zhaoyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230623', '林甸县', '230600', '林甸', '3', '459', '166300', '中国,黑龙江省,大庆市,林甸县', '124.876', '47.186', 'Lindian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230624', '杜尔伯特蒙古族自治县', '230600', '杜尔伯特', '3', '459', '166200', '中国,黑龙江省,大庆市,杜尔伯特蒙古族自治县', '124.449', '46.8651', 'Duerbote', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230700', '伊春市', '230000', '伊春', '2', '458', '153000', '中国,黑龙江省,伊春市', '128.899', '47.7248', 'Yichun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230702', '伊春区', '230700', '伊春', '3', '458', '153000', '中国,黑龙江省,伊春市,伊春区', '128.908', '47.728', 'Yichun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230703', '南岔区', '230700', '南岔', '3', '458', '153100', '中国,黑龙江省,伊春市,南岔区', '129.284', '47.139', 'Nancha', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230704', '友好区', '230700', '友好', '3', '458', '153031', '中国,黑龙江省,伊春市,友好区', '128.84', '47.8537', 'Youhao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230705', '西林区', '230700', '西林', '3', '458', '153025', '中国,黑龙江省,伊春市,西林区', '129.312', '47.481', 'Xilin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230706', '翠峦区', '230700', '翠峦', '3', '458', '153013', '中国,黑龙江省,伊春市,翠峦区', '128.667', '47.725', 'Cuiluan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230707', '新青区', '230700', '新青', '3', '458', '153036', '中国,黑龙江省,伊春市,新青区', '129.537', '48.2907', 'Xinqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230708', '美溪区', '230700', '美溪', '3', '458', '153021', '中国,黑龙江省,伊春市,美溪区', '129.137', '47.6351', 'Meixi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230709', '金山屯区', '230700', '金山屯', '3', '458', '153026', '中国,黑龙江省,伊春市,金山屯区', '129.438', '47.4135', 'Jinshantun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230710', '五营区', '230700', '五营', '3', '458', '153033', '中国,黑龙江省,伊春市,五营区', '129.245', '48.1079', 'Wuying', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230711', '乌马河区', '230700', '乌马河', '3', '458', '153011', '中国,黑龙江省,伊春市,乌马河区', '128.797', '47.728', 'Wumahe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230712', '汤旺河区', '230700', '汤旺河', '3', '458', '153037', '中国,黑龙江省,伊春市,汤旺河区', '129.572', '48.4518', 'Tangwanghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230713', '带岭区', '230700', '带岭', '3', '458', '153106', '中国,黑龙江省,伊春市,带岭区', '129.024', '47.0255', 'Dailing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230714', '乌伊岭区', '230700', '乌伊岭', '3', '458', '153038', '中国,黑龙江省,伊春市,乌伊岭区', '129.44', '48.596', 'Wuyiling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230715', '红星区', '230700', '红星', '3', '458', '153035', '中国,黑龙江省,伊春市,红星区', '129.389', '48.2394', 'Hongxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230716', '上甘岭区', '230700', '上甘岭', '3', '458', '153032', '中国,黑龙江省,伊春市,上甘岭区', '129.024', '47.9752', 'Shangganling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230722', '嘉荫县', '230700', '嘉荫', '3', '458', '153200', '中国,黑龙江省,伊春市,嘉荫县', '130.398', '48.8917', 'Jiayin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230781', '铁力市', '230700', '铁力', '3', '458', '152500', '中国,黑龙江省,伊春市,铁力市', '128.032', '46.9857', 'Tieli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230800', '佳木斯市', '230000', '佳木斯', '2', '454', '154002', '中国,黑龙江省,佳木斯市', '130.362', '46.8096', 'Jiamusi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230803', '向阳区', '230800', '向阳', '3', '454', '154002', '中国,黑龙江省,佳木斯市,向阳区', '130.365', '46.8078', 'Xiangyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230804', '前进区', '230800', '前进', '3', '454', '154002', '中国,黑龙江省,佳木斯市,前进区', '130.375', '46.814', 'Qianjin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230805', '东风区', '230800', '东风', '3', '454', '154005', '中国,黑龙江省,佳木斯市,东风区', '130.404', '46.8226', 'Dongfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230811', '郊区', '230800', '郊区', '3', '454', '154004', '中国,黑龙江省,佳木斯市,郊区', '130.327', '46.8096', 'Jiaoqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230822', '桦南县', '230800', '桦南', '3', '454', '154400', '中国,黑龙江省,佳木斯市,桦南县', '130.554', '46.2392', 'Huanan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230826', '桦川县', '230800', '桦川', '3', '454', '154300', '中国,黑龙江省,佳木斯市,桦川县', '130.719', '47.023', 'Huachuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230828', '汤原县', '230800', '汤原', '3', '454', '154700', '中国,黑龙江省,佳木斯市,汤原县', '129.91', '46.7276', 'Tangyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230833', '抚远县', '230800', '抚远', '3', '454', '156500', '中国,黑龙江省,佳木斯市,抚远县', '134.296', '48.3679', 'Fuyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230881', '同江市', '230800', '同江', '3', '454', '156400', '中国,黑龙江省,佳木斯市,同江市', '132.511', '47.6421', 'Tongjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230882', '富锦市', '230800', '富锦', '3', '454', '156100', '中国,黑龙江省,佳木斯市,富锦市', '132.037', '47.2513', 'Fujin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230900', '七台河市', '230000', '七台河', '2', '464', '154600', '中国,黑龙江省,七台河市', '131.016', '45.7713', 'Qitaihe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230902', '新兴区', '230900', '新兴', '3', '464', '154604', '中国,黑龙江省,七台河市,新兴区', '130.932', '45.8162', 'Xinxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230903', '桃山区', '230900', '桃山', '3', '464', '154600', '中国,黑龙江省,七台河市,桃山区', '131.018', '45.7678', 'Taoshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230904', '茄子河区', '230900', '茄子河', '3', '464', '154622', '中国,黑龙江省,七台河市,茄子河区', '131.068', '45.7852', 'Qiezihe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('230921', '勃利县', '230900', '勃利', '3', '464', '154500', '中国,黑龙江省,七台河市,勃利县', '130.592', '45.755', 'Boli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231000', '牡丹江市', '230000', '牡丹江', '2', '453', '157000', '中国,黑龙江省,牡丹江市', '129.619', '44.583', 'Mudanjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231002', '东安区', '231000', '东安', '3', '453', '157000', '中国,黑龙江省,牡丹江市,东安区', '129.627', '44.5813', 'Dongan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231003', '阳明区', '231000', '阳明', '3', '453', '157013', '中国,黑龙江省,牡丹江市,阳明区', '129.635', '44.596', 'Yangming', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231004', '爱民区', '231000', '爱民', '3', '453', '157009', '中国,黑龙江省,牡丹江市,爱民区', '129.591', '44.5965', 'Aimin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231005', '西安区', '231000', '西安', '3', '453', '157000', '中国,黑龙江省,牡丹江市,西安区', '129.616', '44.5777', 'Xian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231024', '东宁县', '231000', '东宁', '3', '453', '157200', '中国,黑龙江省,牡丹江市,东宁县', '131.128', '44.0661', 'Dongning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231025', '林口县', '231000', '林口', '3', '453', '157600', '中国,黑龙江省,牡丹江市,林口县', '130.284', '45.2781', 'Linkou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231081', '绥芬河市', '231000', '绥芬河', '3', '453', '157300', '中国,黑龙江省,牡丹江市,绥芬河市', '131.151', '44.4125', 'Suifenhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231083', '海林市', '231000', '海林', '3', '453', '157100', '中国,黑龙江省,牡丹江市,海林市', '129.382', '44.59', 'Hailin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231084', '宁安市', '231000', '宁安', '3', '453', '157400', '中国,黑龙江省,牡丹江市,宁安市', '129.483', '44.3402', 'Ningan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231085', '穆棱市', '231000', '穆棱', '3', '453', '157500', '中国,黑龙江省,牡丹江市,穆棱市', '130.525', '44.919', 'Muling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231100', '黑河市', '230000', '黑河', '2', '456', '164300', '中国,黑龙江省,黑河市', '127.499', '50.2496', 'Heihe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231102', '爱辉区', '231100', '爱辉', '3', '456', '164300', '中国,黑龙江省,黑河市,爱辉区', '127.501', '50.252', 'Aihui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231121', '嫩江县', '231100', '嫩江', '3', '456', '161400', '中国,黑龙江省,黑河市,嫩江县', '125.226', '49.1784', 'Nenjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231123', '逊克县', '231100', '逊克', '3', '456', '164400', '中国,黑龙江省,黑河市,逊克县', '128.479', '49.5798', 'Xunke', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231124', '孙吴县', '231100', '孙吴', '3', '456', '164200', '中国,黑龙江省,黑河市,孙吴县', '127.336', '49.4254', 'Sunwu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231181', '北安市', '231100', '北安', '3', '456', '164000', '中国,黑龙江省,黑河市,北安市', '126.482', '48.2387', 'Beian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231182', '五大连池市', '231100', '五大连池', '3', '456', '164100', '中国,黑龙江省,黑河市,五大连池市', '126.203', '48.5151', 'Wudalianchi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231200', '绥化市', '230000', '绥化', '2', '455', '152000', '中国,黑龙江省,绥化市', '126.993', '46.6374', 'Suihua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231202', '北林区', '231200', '北林', '3', '455', '152000', '中国,黑龙江省,绥化市,北林区', '126.986', '46.6373', 'Beilin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231221', '望奎县', '231200', '望奎', '3', '455', '152100', '中国,黑龙江省,绥化市,望奎县', '126.482', '46.8308', 'Wangkui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231222', '兰西县', '231200', '兰西', '3', '455', '151500', '中国,黑龙江省,绥化市,兰西县', '126.29', '46.2525', 'Lanxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231223', '青冈县', '231200', '青冈', '3', '455', '151600', '中国,黑龙江省,绥化市,青冈县', '126.113', '46.6853', 'Qinggang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231224', '庆安县', '231200', '庆安', '3', '455', '152400', '中国,黑龙江省,绥化市,庆安县', '127.508', '46.8802', 'Qingan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231225', '明水县', '231200', '明水', '3', '455', '151700', '中国,黑龙江省,绥化市,明水县', '125.906', '47.1733', 'Mingshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231226', '绥棱县', '231200', '绥棱', '3', '455', '152200', '中国,黑龙江省,绥化市,绥棱县', '127.116', '47.2427', 'Suileng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231281', '安达市', '231200', '安达', '3', '455', '151400', '中国,黑龙江省,绥化市,安达市', '125.344', '46.4177', 'Anda', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231282', '肇东市', '231200', '肇东', '3', '455', '151100', '中国,黑龙江省,绥化市,肇东市', '125.962', '46.0513', 'Zhaodong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('231283', '海伦市', '231200', '海伦', '3', '455', '152300', '中国,黑龙江省,绥化市,海伦市', '126.968', '47.4609', 'Hailun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('232700', '大兴安岭地区', '230000', '大兴安岭', '2', '457', '165000', '中国,黑龙江省,大兴安岭地区', '124.712', '52.3353', 'DaXingAnLing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('232701', '加格达奇区', '232700', '加格达奇', '3', '457', '165000', '中国,黑龙江省,大兴安岭地区,加格达奇区', '124.31', '51.9814', 'Jiagedaqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('232702', '新林区', '232700', '新林', '3', '457', '165000', '中国,黑龙江省,大兴安岭地区,新林区', '124.398', '51.6734', 'Xinlin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('232703', '松岭区', '232700', '松岭', '3', '457', '165000', '中国,黑龙江省,大兴安岭地区,松岭区', '124.19', '51.9855', 'Songling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('232704', '呼中区', '232700', '呼中', '3', '457', '165000', '中国,黑龙江省,大兴安岭地区,呼中区', '123.6', '52.0335', 'Huzhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('232721', '呼玛县', '232700', '呼玛', '3', '457', '165100', '中国,黑龙江省,大兴安岭地区,呼玛县', '126.662', '51.7311', 'Huma', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('232722', '塔河县', '232700', '塔河', '3', '457', '165200', '中国,黑龙江省,大兴安岭地区,塔河县', '124.71', '52.3343', 'Tahe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('232723', '漠河县', '232700', '漠河', '3', '457', '165300', '中国,黑龙江省,大兴安岭地区,漠河县', '122.538', '52.97', 'Mohe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('310100', '上海市', '100000', '上海', '1', '0', '0', '中国,上海市', '121.473', '31.2317', 'Shanghai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('310101', '黄浦区', '310100', '黄浦', '2', '21', '200001', '中国,上海市,黄浦区', '121.493', '31.2234', 'Huangpu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('310104', '徐汇区', '310100', '徐汇', '2', '21', '200030', '中国,上海市,徐汇区', '121.437', '31.1883', 'Xuhui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('310105', '长宁区', '310100', '长宁', '2', '21', '200050', '中国,上海市,长宁区', '121.425', '31.2204', 'Changning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('310106', '静安区', '310100', '静安', '2', '21', '200040', '中国,上海市,静安区', '121.444', '31.2288', 'Jingan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('310107', '普陀区', '310100', '普陀', '2', '21', '200333', '中国,上海市,普陀区', '121.397', '31.2495', 'Putuo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('310108', '闸北区', '310100', '闸北', '2', '21', '200070', '中国,上海市,闸北区', '121.446', '31.2808', 'Zhabei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('310109', '虹口区', '310100', '虹口', '2', '21', '200086', '中国,上海市,虹口区', '121.482', '31.2779', 'Hongkou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('310110', '杨浦区', '310100', '杨浦', '2', '21', '200082', '中国,上海市,杨浦区', '121.526', '31.2595', 'Yangpu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('310112', '闵行区', '310100', '闵行', '2', '21', '201100', '中国,上海市,闵行区', '121.382', '31.1125', 'Minhang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('310113', '宝山区', '310100', '宝山', '2', '21', '201900', '中国,上海市,宝山区', '121.489', '31.4045', 'Baoshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('310114', '嘉定区', '310100', '嘉定', '2', '21', '201800', '中国,上海市,嘉定区', '121.266', '31.3747', 'Jiading', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('310115', '浦东新区', '310100', '浦东', '2', '21', '200135', '中国,上海市,浦东新区', '121.545', '31.2225', 'Pudong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('310116', '金山区', '310100', '金山', '2', '21', '200540', '中国,上海市,金山区', '121.342', '30.7416', 'Jinshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('310117', '松江区', '310100', '松江', '2', '21', '201600', '中国,上海市,松江区', '121.229', '31.0322', 'Songjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('310118', '青浦区', '310100', '青浦', '2', '21', '201700', '中国,上海市,青浦区', '121.124', '31.1497', 'Qingpu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('310120', '奉贤区', '310100', '奉贤', '2', '21', '201400', '中国,上海市,奉贤区', '121.474', '30.9179', 'Fengxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('310230', '崇明县', '310100', '崇明', '2', '21', '202150', '中国,上海市,崇明县', '121.398', '31.6228', 'Chongming', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320000', '江苏省', '100000', '江苏', '1', '0', '0', '中国,江苏省', '118.767', '32.0415', 'Jiangsu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320100', '南京市', '320000', '南京', '2', '25', '210008', '中国,江苏省,南京市', '118.767', '32.0415', 'Nanjing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320102', '玄武区', '320100', '玄武', '3', '25', '210018', '中国,江苏省,南京市,玄武区', '118.798', '32.0486', 'Xuanwu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320104', '秦淮区', '320100', '秦淮', '3', '25', '210001', '中国,江苏省,南京市,秦淮区', '118.798', '32.0111', 'Qinhuai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320105', '建邺区', '320100', '建邺', '3', '25', '210004', '中国,江苏省,南京市,建邺区', '118.766', '32.031', 'Jianye', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320106', '鼓楼区', '320100', '鼓楼', '3', '25', '210009', '中国,江苏省,南京市,鼓楼区', '118.77', '32.0663', 'Gulou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320111', '浦口区', '320100', '浦口', '3', '25', '211800', '中国,江苏省,南京市,浦口区', '118.628', '32.0588', 'Pukou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320113', '栖霞区', '320100', '栖霞', '3', '25', '210046', '中国,江苏省,南京市,栖霞区', '118.881', '32.1135', 'Qixia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320114', '雨花台区', '320100', '雨花台', '3', '25', '210012', '中国,江苏省,南京市,雨花台区', '118.78', '31.992', 'Yuhuatai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320115', '江宁区', '320100', '江宁', '3', '25', '211100', '中国,江苏省,南京市,江宁区', '118.84', '31.9526', 'Jiangning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320116', '六合区', '320100', '六合', '3', '25', '211500', '中国,江苏省,南京市,六合区', '118.841', '32.3422', 'Luhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320117', '溧水区', '320100', '溧水', '3', '25', '211200', '中国,江苏省,南京市,溧水区', '119.029', '31.6531', 'Lishui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320118', '高淳区', '320100', '高淳', '3', '25', '211300', '中国,江苏省,南京市,高淳区', '118.876', '31.3271', 'Gaochun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320200', '无锡市', '320000', '无锡', '2', '510', '214000', '中国,江苏省,无锡市', '120.302', '31.5747', 'Wuxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320202', '崇安区', '320200', '崇安', '3', '510', '214001', '中国,江苏省,无锡市,崇安区', '120.3', '31.58', 'Chongan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320203', '南长区', '320200', '南长', '3', '510', '214021', '中国,江苏省,无锡市,南长区', '120.309', '31.5636', 'Nanchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320204', '北塘区', '320200', '北塘', '3', '510', '214044', '中国,江苏省,无锡市,北塘区', '120.294', '31.6059', 'Beitang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320205', '锡山区', '320200', '锡山', '3', '510', '214101', '中国,江苏省,无锡市,锡山区', '120.357', '31.5886', 'Xishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320206', '惠山区', '320200', '惠山', '3', '510', '214174', '中国,江苏省,无锡市,惠山区', '120.298', '31.6809', 'Huishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320207', '梁溪区', '320200', '梁溪', '3', '510', '214200', '中国,江苏省,无锡市,梁溪区', '119.824', '31.3398', 'Liangxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320211', '滨湖区', '320200', '滨湖', '3', '510', '214123', '中国,江苏省,无锡市,滨湖区', '120.295', '31.5216', 'Binhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320281', '江阴市', '320200', '江阴', '3', '510', '214431', '中国,江苏省,无锡市,江阴市', '120.285', '31.92', 'Jiangyin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320282', '宜兴市', '320200', '宜兴', '3', '510', '214200', '中国,江苏省,无锡市,宜兴市', '119.824', '31.3398', 'Yixing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320300', '徐州市', '320000', '徐州', '2', '516', '221003', '中国,江苏省,徐州市', '117.185', '34.2618', 'Xuzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320302', '鼓楼区', '320300', '鼓楼', '3', '516', '221005', '中国,江苏省,徐州市,鼓楼区', '117.186', '34.2885', 'Gulou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320303', '云龙区', '320300', '云龙', '3', '516', '221007', '中国,江苏省,徐州市,云龙区', '117.231', '34.249', 'Yunlong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320305', '贾汪区', '320300', '贾汪', '3', '516', '221003', '中国,江苏省,徐州市,贾汪区', '117.453', '34.4426', 'Jiawang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320311', '泉山区', '320300', '泉山', '3', '516', '221006', '中国,江苏省,徐州市,泉山区', '117.194', '34.2442', 'Quanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320312', '铜山区', '320300', '铜山', '3', '516', '221106', '中国,江苏省,徐州市,铜山区', '117.184', '34.1929', 'Tongshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320321', '丰县', '320300', '丰县', '3', '516', '221700', '中国,江苏省,徐州市,丰县', '116.6', '34.6997', 'Fengxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320322', '沛县', '320300', '沛县', '3', '516', '221600', '中国,江苏省,徐州市,沛县', '116.937', '34.7216', 'Peixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320324', '睢宁县', '320300', '睢宁', '3', '516', '221200', '中国,江苏省,徐州市,睢宁县', '117.941', '33.9127', 'Suining', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320381', '新沂市', '320300', '新沂', '3', '516', '221400', '中国,江苏省,徐州市,新沂市', '118.355', '34.3694', 'Xinyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320382', '邳州市', '320300', '邳州', '3', '516', '221300', '中国,江苏省,徐州市,邳州市', '117.959', '34.3333', 'Pizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320400', '常州市', '320000', '常州', '2', '519', '213000', '中国,江苏省,常州市', '119.947', '31.7728', 'Changzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320402', '天宁区', '320400', '天宁', '3', '519', '213000', '中国,江苏省,常州市,天宁区', '119.951', '31.7521', 'Tianning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320404', '钟楼区', '320400', '钟楼', '3', '519', '213023', '中国,江苏省,常州市,钟楼区', '119.902', '31.8022', 'Zhonglou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320405', '戚墅堰区', '320400', '戚墅堰', '3', '519', '213025', '中国,江苏省,常州市,戚墅堰区', '120.061', '31.7196', 'Qishuyan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320411', '新北区', '320400', '新北', '3', '519', '213022', '中国,江苏省,常州市,新北区', '119.971', '31.8305', 'Xinbei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320412', '武进区', '320400', '武进', '3', '519', '213100', '中国,江苏省,常州市,武进区', '119.942', '31.7009', 'Wujin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320481', '溧阳市', '320400', '溧阳', '3', '519', '213300', '中国,江苏省,常州市,溧阳市', '119.484', '31.4154', 'Liyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320482', '金坛市', '320400', '金坛', '3', '519', '213200', '中国,江苏省,常州市,金坛市', '119.578', '31.7404', 'Jintan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320500', '苏州市', '320000', '苏州', '2', '512', '215002', '中国,江苏省,苏州市', '120.62', '31.2994', 'Suzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320505', '虎丘区', '320500', '虎丘', '3', '512', '215004', '中国,江苏省,苏州市,虎丘区', '120.573', '31.2953', 'Huqiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320506', '吴中区', '320500', '吴中', '3', '512', '215128', '中国,江苏省,苏州市,吴中区', '120.632', '31.2623', 'Wuzhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320507', '相城区', '320500', '相城', '3', '512', '215131', '中国,江苏省,苏州市,相城区', '120.642', '31.3689', 'Xiangcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320508', '姑苏区', '320500', '姑苏', '3', '512', '215031', '中国,江苏省,苏州市,姑苏区', '120.62', '31.2994', 'Gusu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320509', '吴江区', '320500', '吴江', '3', '512', '215200', '中国,江苏省,苏州市,吴江区', '120.638', '31.1598', 'Wujiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320581', '常熟市', '320500', '常熟', '3', '512', '215500', '中国,江苏省,苏州市,常熟市', '120.752', '31.6537', 'Changshu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320582', '张家港市', '320500', '张家港', '3', '512', '215600', '中国,江苏省,苏州市,张家港市', '120.555', '31.8753', 'Zhangjiagang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320583', '昆山市', '320500', '昆山', '3', '512', '215300', '中国,江苏省,苏州市,昆山市', '120.981', '31.3846', 'Kunshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320585', '太仓市', '320500', '太仓', '3', '512', '215400', '中国,江苏省,苏州市,太仓市', '121.109', '31.4497', 'Taicang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320600', '南通市', '320000', '南通', '2', '513', '226001', '中国,江苏省,南通市', '120.865', '32.0162', 'Nantong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320602', '崇川区', '320600', '崇川', '3', '513', '226001', '中国,江苏省,南通市,崇川区', '120.857', '32.0098', 'Chongchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320611', '港闸区', '320600', '港闸', '3', '513', '226001', '中国,江苏省,南通市,港闸区', '120.818', '32.0316', 'Gangzha', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320612', '通州区', '320600', '通州', '3', '513', '226300', '中国,江苏省,南通市,通州区', '121.073', '32.0676', 'Tongzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320621', '海安县', '320600', '海安', '3', '513', '226600', '中国,江苏省,南通市,海安县', '120.459', '32.5451', 'Haian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320623', '如东县', '320600', '如东', '3', '513', '226400', '中国,江苏省,南通市,如东县', '121.189', '32.3144', 'Rudong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320681', '启东市', '320600', '启东', '3', '513', '226200', '中国,江苏省,南通市,启东市', '121.66', '31.8108', 'Qidong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320682', '如皋市', '320600', '如皋', '3', '513', '226500', '中国,江苏省,南通市,如皋市', '120.56', '32.376', 'Rugao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320684', '海门市', '320600', '海门', '3', '513', '226100', '中国,江苏省,南通市,海门市', '121.17', '31.8942', 'Haimen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320700', '连云港市', '320000', '连云港', '2', '518', '222002', '中国,江苏省,连云港市', '119.179', '34.6', 'Lianyungang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320703', '连云区', '320700', '连云', '3', '518', '222042', '中国,江苏省,连云港市,连云区', '119.373', '34.7529', 'Lianyun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320706', '海州区', '320700', '海州', '3', '518', '222003', '中国,江苏省,连云港市,海州区', '119.131', '34.5699', 'Haizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320707', '赣榆区', '320700', '赣榆', '3', '518', '222100', '中国,江苏省,连云港市,赣榆区', '119.129', '34.8392', 'Ganyu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320722', '东海县', '320700', '东海', '3', '518', '222300', '中国,江苏省,连云港市,东海县', '118.771', '34.5421', 'Donghai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320723', '灌云县', '320700', '灌云', '3', '518', '222200', '中国,江苏省,连云港市,灌云县', '119.239', '34.2839', 'Guanyun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320724', '灌南县', '320700', '灌南', '3', '518', '222500', '中国,江苏省,连云港市,灌南县', '119.356', '34.09', 'Guannan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320800', '淮安市', '320000', '淮安', '2', '517', '223001', '中国,江苏省,淮安市', '119.021', '33.5975', 'Huaian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320802', '清河区', '320800', '清河', '3', '517', '223001', '中国,江苏省,淮安市,清河区', '119.008', '33.5995', 'Qinghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320803', '淮安区', '320800', '淮安', '3', '517', '223200', '中国,江苏省,淮安市,淮安区', '119.021', '33.5975', 'Huaian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320804', '淮阴区', '320800', '淮阴', '3', '517', '223300', '中国,江苏省,淮安市,淮阴区', '119.035', '33.6317', 'Huaiyin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320811', '清浦区', '320800', '清浦', '3', '517', '223002', '中国,江苏省,淮安市,清浦区', '119.026', '33.5523', 'Qingpu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320826', '涟水县', '320800', '涟水', '3', '517', '223400', '中国,江苏省,淮安市,涟水县', '119.261', '33.7809', 'Lianshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320829', '洪泽县', '320800', '洪泽', '3', '517', '223100', '中国,江苏省,淮安市,洪泽县', '118.873', '33.2943', 'Hongze', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320830', '盱眙县', '320800', '盱眙', '3', '517', '211700', '中国,江苏省,淮安市,盱眙县', '118.545', '33.0109', 'Xuyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320831', '金湖县', '320800', '金湖', '3', '517', '211600', '中国,江苏省,淮安市,金湖县', '119.023', '33.0222', 'Jinhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320900', '盐城市', '320000', '盐城', '2', '515', '224005', '中国,江苏省,盐城市', '120.14', '33.3776', 'Yancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320902', '亭湖区', '320900', '亭湖', '3', '515', '224005', '中国,江苏省,盐城市,亭湖区', '120.166', '33.3783', 'Tinghu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320903', '盐都区', '320900', '盐都', '3', '515', '224055', '中国,江苏省,盐城市,盐都区', '120.154', '33.3373', 'Yandu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320921', '响水县', '320900', '响水', '3', '515', '224600', '中国,江苏省,盐城市,响水县', '119.57', '34.2051', 'Xiangshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320922', '滨海县', '320900', '滨海', '3', '515', '224500', '中国,江苏省,盐城市,滨海县', '119.821', '33.9897', 'Binhai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320923', '阜宁县', '320900', '阜宁', '3', '515', '224400', '中国,江苏省,盐城市,阜宁县', '119.802', '33.7823', 'Funing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320924', '射阳县', '320900', '射阳', '3', '515', '224300', '中国,江苏省,盐城市,射阳县', '120.26', '33.7764', 'Sheyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320925', '建湖县', '320900', '建湖', '3', '515', '224700', '中国,江苏省,盐城市,建湖县', '119.799', '33.4724', 'Jianhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320981', '东台市', '320900', '东台', '3', '515', '224200', '中国,江苏省,盐城市,东台市', '120.324', '32.8508', 'Dongtai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('320982', '大丰市', '320900', '大丰', '3', '515', '224100', '中国,江苏省,盐城市,大丰市', '120.466', '33.1989', 'Dafeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321000', '扬州市', '320000', '扬州', '2', '514', '225002', '中国,江苏省,扬州市', '119.421', '32.3932', 'Yangzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321002', '广陵区', '321000', '广陵', '3', '514', '225002', '中国,江苏省,扬州市,广陵区', '119.432', '32.3947', 'Guangling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321003', '邗江区', '321000', '邗江', '3', '514', '225002', '中国,江苏省,扬州市,邗江区', '119.398', '32.3765', 'Hanjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321012', '江都区', '321000', '江都', '3', '514', '225200', '中国,江苏省,扬州市,江都区', '119.567', '32.4266', 'Jiangdu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321023', '宝应县', '321000', '宝应', '3', '514', '225800', '中国,江苏省,扬州市,宝应县', '119.312', '33.2355', 'Baoying', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321081', '仪征市', '321000', '仪征', '3', '514', '211400', '中国,江苏省,扬州市,仪征市', '119.184', '32.272', 'Yizheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321084', '高邮市', '321000', '高邮', '3', '514', '225600', '中国,江苏省,扬州市,高邮市', '119.46', '32.7813', 'Gaoyou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321100', '镇江市', '320000', '镇江', '2', '511', '212004', '中国,江苏省,镇江市', '119.453', '32.2044', 'Zhenjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321102', '京口区', '321100', '京口', '3', '511', '212003', '中国,江苏省,镇江市,京口区', '119.469', '32.1981', 'Jingkou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321111', '润州区', '321100', '润州', '3', '511', '212005', '中国,江苏省,镇江市,润州区', '119.411', '32.1952', 'Runzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321112', '丹徒区', '321100', '丹徒', '3', '511', '212028', '中国,江苏省,镇江市,丹徒区', '119.434', '32.1318', 'Dantu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321181', '丹阳市', '321100', '丹阳', '3', '511', '212300', '中国,江苏省,镇江市,丹阳市', '119.575', '31.9912', 'Danyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321182', '扬中市', '321100', '扬中', '3', '511', '212200', '中国,江苏省,镇江市,扬中市', '119.797', '32.2363', 'Yangzhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321183', '句容市', '321100', '句容', '3', '511', '212400', '中国,江苏省,镇江市,句容市', '119.165', '31.9559', 'Jurong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321200', '泰州市', '320000', '泰州', '2', '523', '225300', '中国,江苏省,泰州市', '119.915', '32.4849', 'Taizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321202', '海陵区', '321200', '海陵', '3', '523', '225300', '中国,江苏省,泰州市,海陵区', '119.919', '32.491', 'Hailing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321203', '高港区', '321200', '高港', '3', '523', '225321', '中国,江苏省,泰州市,高港区', '119.881', '32.3183', 'Gaogang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321204', '姜堰区', '321200', '姜堰', '3', '523', '225500', '中国,江苏省,泰州市,姜堰区', '120.148', '32.5085', 'Jiangyan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321281', '兴化市', '321200', '兴化', '3', '523', '225700', '中国,江苏省,泰州市,兴化市', '119.852', '32.9094', 'Xinghua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321282', '靖江市', '321200', '靖江', '3', '523', '214500', '中国,江苏省,泰州市,靖江市', '120.273', '32.0159', 'Jingjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321283', '泰兴市', '321200', '泰兴', '3', '523', '225400', '中国,江苏省,泰州市,泰兴市', '120.052', '32.1719', 'Taixing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321300', '宿迁市', '320000', '宿迁', '2', '527', '223800', '中国,江苏省,宿迁市', '118.293', '33.9452', 'Suqian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321302', '宿城区', '321300', '宿城', '3', '527', '223800', '中国,江苏省,宿迁市,宿城区', '118.291', '33.9422', 'Sucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321311', '宿豫区', '321300', '宿豫', '3', '527', '223800', '中国,江苏省,宿迁市,宿豫区', '118.329', '33.9467', 'Suyu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321322', '沭阳县', '321300', '沭阳', '3', '527', '223600', '中国,江苏省,宿迁市,沭阳县', '118.769', '34.1145', 'Shuyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321323', '泗阳县', '321300', '泗阳', '3', '527', '223700', '中国,江苏省,宿迁市,泗阳县', '118.703', '33.721', 'Siyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('321324', '泗洪县', '321300', '泗洪', '3', '527', '223900', '中国,江苏省,宿迁市,泗洪县', '118.217', '33.46', 'Sihong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330000', '浙江省', '100000', '浙江', '1', '0', '0', '中国,浙江省', '120.154', '30.2875', 'Zhejiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330100', '杭州市', '330000', '杭州', '2', '571', '310026', '中国,浙江省,杭州市', '120.154', '30.2875', 'Hangzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330102', '上城区', '330100', '上城', '3', '571', '310002', '中国,浙江省,杭州市,上城区', '120.169', '30.2425', 'Shangcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330103', '下城区', '330100', '下城', '3', '571', '310006', '中国,浙江省,杭州市,下城区', '120.181', '30.2815', 'Xiacheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330104', '江干区', '330100', '江干', '3', '571', '310016', '中国,浙江省,杭州市,江干区', '120.205', '30.2572', 'Jianggan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330105', '拱墅区', '330100', '拱墅', '3', '571', '310011', '中国,浙江省,杭州市,拱墅区', '120.142', '30.3197', 'Gongshu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330106', '西湖区', '330100', '西湖', '3', '571', '310013', '中国,浙江省,杭州市,西湖区', '120.13', '30.2595', 'Xihu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330108', '滨江区', '330100', '滨江', '3', '571', '310051', '中国,浙江省,杭州市,滨江区', '120.212', '30.2083', 'Binjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330109', '萧山区', '330100', '萧山', '3', '571', '311200', '中国,浙江省,杭州市,萧山区', '120.265', '30.185', 'Xiaoshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330110', '余杭区', '330100', '余杭', '3', '571', '311100', '中国,浙江省,杭州市,余杭区', '120.3', '30.4183', 'Yuhang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330122', '桐庐县', '330100', '桐庐', '3', '571', '311500', '中国,浙江省,杭州市,桐庐县', '119.689', '29.7978', 'Tonglu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330127', '淳安县', '330100', '淳安', '3', '571', '311700', '中国,浙江省,杭州市,淳安县', '119.043', '29.6099', 'Chunan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330182', '建德市', '330100', '建德', '3', '571', '311600', '中国,浙江省,杭州市,建德市', '119.282', '29.476', 'Jiande', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330183', '富阳区', '330100', '富阳', '3', '571', '311400', '中国,浙江省,杭州市,富阳区', '119.96', '30.0488', 'Fuyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330185', '临安市', '330100', '临安', '3', '571', '311300', '中国,浙江省,杭州市,临安市', '119.725', '30.2345', 'Linan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330200', '宁波市', '330000', '宁波', '2', '574', '315000', '中国,浙江省,宁波市', '121.55', '29.8684', 'Ningbo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330203', '海曙区', '330200', '海曙', '3', '574', '315000', '中国,浙江省,宁波市,海曙区', '121.551', '29.8598', 'Haishu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330204', '江东区', '330200', '江东', '3', '574', '315040', '中国,浙江省,宁波市,江东区', '121.57', '29.867', 'Jiangdong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330205', '江北区', '330200', '江北', '3', '574', '315020', '中国,浙江省,宁波市,江北区', '121.557', '29.8878', 'Jiangbei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330206', '北仑区', '330200', '北仑', '3', '574', '315800', '中国,浙江省,宁波市,北仑区', '121.844', '29.9007', 'Beilun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330211', '镇海区', '330200', '镇海', '3', '574', '315200', '中国,浙江省,宁波市,镇海区', '121.716', '29.9489', 'Zhenhai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330212', '鄞州区', '330200', '鄞州', '3', '574', '315100', '中国,浙江省,宁波市,鄞州区', '121.548', '29.8161', 'Yinzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330225', '象山县', '330200', '象山', '3', '574', '315700', '中国,浙江省,宁波市,象山县', '121.869', '29.4776', 'Xiangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330226', '宁海县', '330200', '宁海', '3', '574', '315600', '中国,浙江省,宁波市,宁海县', '121.431', '29.2889', 'Ninghai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330281', '余姚市', '330200', '余姚', '3', '574', '315400', '中国,浙江省,宁波市,余姚市', '121.153', '30.0387', 'Yuyao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330282', '慈溪市', '330200', '慈溪', '3', '574', '315300', '中国,浙江省,宁波市,慈溪市', '121.266', '30.1696', 'Cixi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330283', '奉化市', '330200', '奉化', '3', '574', '315500', '中国,浙江省,宁波市,奉化市', '121.41', '29.6554', 'Fenghua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330300', '温州市', '330000', '温州', '2', '577', '325000', '中国,浙江省,温州市', '120.672', '28.0006', 'Wenzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330302', '鹿城区', '330300', '鹿城', '3', '577', '325000', '中国,浙江省,温州市,鹿城区', '120.655', '28.0149', 'Lucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330303', '龙湾区', '330300', '龙湾', '3', '577', '325013', '中国,浙江省,温州市,龙湾区', '120.831', '27.9128', 'Longwan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330304', '瓯海区', '330300', '瓯海', '3', '577', '325005', '中国,浙江省,温州市,瓯海区', '120.638', '28.0071', 'Ouhai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330322', '洞头县', '330300', '洞头', '3', '577', '325700', '中国,浙江省,温州市,洞头县', '121.156', '27.8363', 'Dongtou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330324', '永嘉县', '330300', '永嘉', '3', '577', '325100', '中国,浙江省,温州市,永嘉县', '120.693', '28.1546', 'Yongjia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330326', '平阳县', '330300', '平阳', '3', '577', '325400', '中国,浙江省,温州市,平阳县', '120.565', '27.6625', 'Pingyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330327', '苍南县', '330300', '苍南', '3', '577', '325800', '中国,浙江省,温州市,苍南县', '120.426', '27.5174', 'Cangnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330328', '文成县', '330300', '文成', '3', '577', '325300', '中国,浙江省,温州市,文成县', '120.091', '27.7868', 'Wencheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330329', '泰顺县', '330300', '泰顺', '3', '577', '325500', '中国,浙江省,温州市,泰顺县', '119.718', '27.5569', 'Taishun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330381', '瑞安市', '330300', '瑞安', '3', '577', '325200', '中国,浙江省,温州市,瑞安市', '120.655', '27.7804', 'Ruian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330382', '乐清市', '330300', '乐清', '3', '577', '325600', '中国,浙江省,温州市,乐清市', '120.962', '28.124', 'Yueqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330400', '嘉兴市', '330000', '嘉兴', '2', '573', '314000', '中国,浙江省,嘉兴市', '120.751', '30.7627', 'Jiaxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330402', '南湖区', '330400', '南湖', '3', '573', '314051', '中国,浙江省,嘉兴市,南湖区', '120.785', '30.7486', 'Nanhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330411', '秀洲区', '330400', '秀洲', '3', '573', '314031', '中国,浙江省,嘉兴市,秀洲区', '120.709', '30.7645', 'Xiuzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330421', '嘉善县', '330400', '嘉善', '3', '573', '314100', '中国,浙江省,嘉兴市,嘉善县', '120.926', '30.8299', 'Jiashan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330424', '海盐县', '330400', '海盐', '3', '573', '314300', '中国,浙江省,嘉兴市,海盐县', '120.946', '30.5255', 'Haiyan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330481', '海宁市', '330400', '海宁', '3', '573', '314400', '中国,浙江省,嘉兴市,海宁市', '120.681', '30.5097', 'Haining', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330482', '平湖市', '330400', '平湖', '3', '573', '314200', '中国,浙江省,嘉兴市,平湖市', '121.022', '30.6962', 'Pinghu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330483', '桐乡市', '330400', '桐乡', '3', '573', '314500', '中国,浙江省,嘉兴市,桐乡市', '120.565', '30.6302', 'Tongxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330500', '湖州市', '330000', '湖州', '2', '572', '313000', '中国,浙江省,湖州市', '120.102', '30.8672', 'Huzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330502', '吴兴区', '330500', '吴兴', '3', '572', '313000', '中国,浙江省,湖州市,吴兴区', '120.125', '30.8575', 'Wuxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330503', '南浔区', '330500', '南浔', '3', '572', '313009', '中国,浙江省,湖州市,南浔区', '120.42', '30.8669', 'Nanxun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330521', '德清县', '330500', '德清', '3', '572', '313200', '中国,浙江省,湖州市,德清县', '119.978', '30.5337', 'Deqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330522', '长兴县', '330500', '长兴', '3', '572', '313100', '中国,浙江省,湖州市,长兴县', '119.908', '31.0061', 'Changxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330523', '安吉县', '330500', '安吉', '3', '572', '313300', '中国,浙江省,湖州市,安吉县', '119.682', '30.638', 'Anji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330600', '绍兴市', '330000', '绍兴', '2', '575', '312000', '中国,浙江省,绍兴市', '120.582', '29.9971', 'Shaoxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330602', '越城区', '330600', '越城', '3', '575', '312000', '中国,浙江省,绍兴市,越城区', '120.582', '29.989', 'Yuecheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330603', '柯桥区', '330600', '柯桥', '3', '575', '312030', '中国,浙江省,绍兴市,柯桥区', '120.493', '30.0876', 'Keqiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330604', '上虞区', '330600', '上虞', '3', '575', '312300', '中国,浙江省,绍兴市,上虞区', '120.476', '30.078', 'Shangyu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330624', '新昌县', '330600', '新昌', '3', '575', '312500', '中国,浙江省,绍兴市,新昌县', '120.904', '29.4999', 'Xinchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330681', '诸暨市', '330600', '诸暨', '3', '575', '311800', '中国,浙江省,绍兴市,诸暨市', '120.236', '29.7136', 'Zhuji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330683', '嵊州市', '330600', '嵊州', '3', '575', '312400', '中国,浙江省,绍兴市,嵊州市', '120.822', '29.5885', 'Shengzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330700', '金华市', '330000', '金华', '2', '579', '321000', '中国,浙江省,金华市', '119.65', '29.0895', 'Jinhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330702', '婺城区', '330700', '婺城', '3', '579', '321000', '中国,浙江省,金华市,婺城区', '119.571', '29.0952', 'Wucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330703', '金东区', '330700', '金东', '3', '579', '321000', '中国,浙江省,金华市,金东区', '119.693', '29.0991', 'Jindong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330723', '武义县', '330700', '武义', '3', '579', '321200', '中国,浙江省,金华市,武义县', '119.816', '28.8933', 'Wuyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330726', '浦江县', '330700', '浦江', '3', '579', '322200', '中国,浙江省,金华市,浦江县', '119.892', '29.4535', 'Pujiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330727', '磐安县', '330700', '磐安', '3', '579', '322300', '中国,浙江省,金华市,磐安县', '120.45', '29.0573', 'Panan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330781', '兰溪市', '330700', '兰溪', '3', '579', '321100', '中国,浙江省,金华市,兰溪市', '119.46', '29.2084', 'Lanxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330782', '义乌市', '330700', '义乌', '3', '579', '322000', '中国,浙江省,金华市,义乌市', '120.074', '29.3056', 'Yiwu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330783', '东阳市', '330700', '东阳', '3', '579', '322100', '中国,浙江省,金华市,东阳市', '120.242', '29.2894', 'Dongyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330784', '永康市', '330700', '永康', '3', '579', '321300', '中国,浙江省,金华市,永康市', '120.047', '28.8884', 'Yongkang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330800', '衢州市', '330000', '衢州', '2', '570', '324002', '中国,浙江省,衢州市', '118.873', '28.9417', 'Quzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330802', '柯城区', '330800', '柯城', '3', '570', '324100', '中国,浙江省,衢州市,柯城区', '118.871', '28.9686', 'Kecheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330803', '衢江区', '330800', '衢江', '3', '570', '324022', '中国,浙江省,衢州市,衢江区', '118.96', '28.9798', 'Qujiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330822', '常山县', '330800', '常山', '3', '570', '324200', '中国,浙江省,衢州市,常山县', '118.51', '28.9019', 'Changshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330824', '开化县', '330800', '开化', '3', '570', '324300', '中国,浙江省,衢州市,开化县', '118.416', '29.1378', 'Kaihua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330825', '龙游县', '330800', '龙游', '3', '570', '324400', '中国,浙江省,衢州市,龙游县', '119.172', '29.0282', 'Longyou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330881', '江山市', '330800', '江山', '3', '570', '324100', '中国,浙江省,衢州市,江山市', '118.627', '28.7386', 'Jiangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330900', '舟山市', '330000', '舟山', '2', '580', '316000', '中国,浙江省,舟山市', '122.107', '30.016', 'Zhoushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330902', '定海区', '330900', '定海', '3', '580', '316000', '中国,浙江省,舟山市,定海区', '122.107', '30.0198', 'Dinghai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330903', '普陀区', '330900', '普陀', '3', '580', '316100', '中国,浙江省,舟山市,普陀区', '122.303', '29.9491', 'Putuo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330921', '岱山县', '330900', '岱山', '3', '580', '316200', '中国,浙江省,舟山市,岱山县', '122.205', '30.2439', 'Daishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('330922', '嵊泗县', '330900', '嵊泗', '3', '580', '202450', '中国,浙江省,舟山市,嵊泗县', '122.451', '30.7268', 'Shengsi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331000', '台州市', '330000', '台州', '2', '576', '318000', '中国,浙江省,台州市', '121.429', '28.6614', 'Taizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331002', '椒江区', '331000', '椒江', '3', '576', '318000', '中国,浙江省,台州市,椒江区', '121.443', '28.673', 'Jiaojiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331003', '黄岩区', '331000', '黄岩', '3', '576', '318020', '中国,浙江省,台州市,黄岩区', '121.259', '28.6508', 'Huangyan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331004', '路桥区', '331000', '路桥', '3', '576', '318050', '中国,浙江省,台州市,路桥区', '121.374', '28.5802', 'Luqiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331021', '玉环县', '331000', '玉环', '3', '576', '317600', '中国,浙江省,台州市,玉环县', '121.232', '28.1364', 'Yuhuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331022', '三门县', '331000', '三门', '3', '576', '317100', '中国,浙江省,台州市,三门县', '121.394', '29.1051', 'Sanmen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331023', '天台县', '331000', '天台', '3', '576', '317200', '中国,浙江省,台州市,天台县', '121.008', '29.1429', 'Tiantai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331024', '仙居县', '331000', '仙居', '3', '576', '317300', '中国,浙江省,台州市,仙居县', '120.729', '28.8467', 'Xianju', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331081', '温岭市', '331000', '温岭', '3', '576', '317500', '中国,浙江省,台州市,温岭市', '121.386', '28.3718', 'Wenling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331082', '临海市', '331000', '临海', '3', '576', '317000', '中国,浙江省,台州市,临海市', '121.139', '28.856', 'Linhai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331100', '丽水市', '330000', '丽水', '2', '578', '323000', '中国,浙江省,丽水市', '119.922', '28.452', 'Lishui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331102', '莲都区', '331100', '莲都', '3', '578', '323000', '中国,浙江省,丽水市,莲都区', '119.913', '28.4458', 'Liandu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331121', '青田县', '331100', '青田', '3', '578', '323900', '中国,浙江省,丽水市,青田县', '120.29', '28.139', 'Qingtian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331122', '缙云县', '331100', '缙云', '3', '578', '321400', '中国,浙江省,丽水市,缙云县', '120.09', '28.6594', 'Jinyun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331123', '遂昌县', '331100', '遂昌', '3', '578', '323300', '中国,浙江省,丽水市,遂昌县', '119.276', '28.5929', 'Suichang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331124', '松阳县', '331100', '松阳', '3', '578', '323400', '中国,浙江省,丽水市,松阳县', '119.482', '28.4494', 'Songyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331125', '云和县', '331100', '云和', '3', '578', '323600', '中国,浙江省,丽水市,云和县', '119.573', '28.1164', 'Yunhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331126', '庆元县', '331100', '庆元', '3', '578', '323800', '中国,浙江省,丽水市,庆元县', '119.063', '27.6184', 'Qingyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331127', '景宁畲族自治县', '331100', '景宁', '3', '578', '323500', '中国,浙江省,丽水市,景宁畲族自治县', '119.638', '27.9739', 'Jingning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331181', '龙泉市', '331100', '龙泉', '3', '578', '323700', '中国,浙江省,丽水市,龙泉市', '119.142', '28.0743', 'Longquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331200', '舟山群岛新区', '330000', '舟山新区', '2', '580', '316000', '中国,浙江省,舟山群岛新区', '122.318', '29.8132', 'Zhoushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331201', '金塘岛', '331200', '金塘', '3', '580', '316000', '中国,浙江省,舟山群岛新区,金塘岛', '121.893', '30.0406', 'Jintang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331202', '六横岛', '331200', '六横', '3', '580', '316000', '中国,浙江省,舟山群岛新区,六横岛', '122.143', '29.6629', 'Liuheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331203', '衢山岛', '331200', '衢山', '3', '580', '316000', '中国,浙江省,舟山群岛新区,衢山岛', '122.358', '30.4426', 'Qushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331204', '舟山本岛西北部', '331200', '舟山', '3', '580', '316000', '中国,浙江省,舟山群岛新区,舟山本岛西北部', '122.031', '30.1404', 'Zhoushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331205', '岱山岛西南部', '331200', '岱山', '3', '580', '316000', '中国,浙江省,舟山群岛新区,岱山岛西南部', '122.18', '30.2773', 'Daishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331206', '泗礁岛', '331200', '泗礁', '3', '580', '316000', '中国,浙江省,舟山群岛新区,泗礁岛', '122.458', '30.7251', 'Sijiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331207', '朱家尖岛', '331200', '朱家尖', '3', '580', '316000', '中国,浙江省,舟山群岛新区,朱家尖岛', '122.391', '29.9163', 'Zhujiajian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331208', '洋山岛', '331200', '洋山', '3', '580', '316000', '中国,浙江省,舟山群岛新区,洋山岛', '121.996', '30.0946', 'Yangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331209', '长涂岛', '331200', '长涂', '3', '580', '316000', '中国,浙江省,舟山群岛新区,长涂岛', '122.285', '30.2489', 'Changtu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('331210', '虾峙岛', '331200', '虾峙', '3', '580', '316000', '中国,浙江省,舟山群岛新区,虾峙岛', '122.245', '29.7529', 'Xiazhi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340000', '安徽省', '100000', '安徽', '1', '0', '0', '中国,安徽省', '117.283', '31.8612', 'Anhui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340100', '合肥市', '340000', '合肥', '2', '551', '230001', '中国,安徽省,合肥市', '117.283', '31.8612', 'Hefei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340102', '瑶海区', '340100', '瑶海', '3', '551', '230011', '中国,安徽省,合肥市,瑶海区', '117.309', '31.8581', 'Yaohai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340103', '庐阳区', '340100', '庐阳', '3', '551', '230001', '中国,安徽省,合肥市,庐阳区', '117.265', '31.8787', 'Luyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340104', '蜀山区', '340100', '蜀山', '3', '551', '230031', '中国,安徽省,合肥市,蜀山区', '117.261', '31.8512', 'Shushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340111', '包河区', '340100', '包河', '3', '551', '230041', '中国,安徽省,合肥市,包河区', '117.31', '31.795', 'Baohe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340121', '长丰县', '340100', '长丰', '3', '551', '231100', '中国,安徽省,合肥市,长丰县', '117.165', '32.4796', 'Changfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340122', '肥东县', '340100', '肥东', '3', '551', '231600', '中国,安徽省,合肥市,肥东县', '117.471', '31.8853', 'Feidong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340123', '肥西县', '340100', '肥西', '3', '551', '231200', '中国,安徽省,合肥市,肥西县', '117.168', '31.7214', 'Feixi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340124', '庐江县', '340100', '庐江', '3', '565', '231500', '中国,安徽省,合肥市,庐江县', '117.29', '31.2515', 'Lujiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340181', '巢湖市', '340100', '巢湖', '3', '565', '238000', '中国,安徽省,合肥市,巢湖市', '117.874', '31.6005', 'Chaohu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340200', '芜湖市', '340000', '芜湖', '2', '551', '241000', '中国,安徽省,芜湖市', '118.376', '31.3263', 'Wuhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340202', '镜湖区', '340200', '镜湖', '3', '553', '241000', '中国,安徽省,芜湖市,镜湖区', '118.385', '31.3404', 'Jinghu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340203', '弋江区', '340200', '弋江', '3', '553', '241000', '中国,安徽省,芜湖市,弋江区', '118.373', '31.3118', 'Yijiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340207', '鸠江区', '340200', '鸠江', '3', '553', '241000', '中国,安徽省,芜湖市,鸠江区', '118.392', '31.3693', 'Jiujiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340208', '三山区', '340200', '三山', '3', '553', '241000', '中国,安徽省,芜湖市,三山区', '118.225', '31.207', 'Sanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340221', '芜湖县', '340200', '芜湖', '3', '553', '241100', '中国,安徽省,芜湖市,芜湖县', '118.575', '31.1348', 'Wuhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340222', '繁昌县', '340200', '繁昌', '3', '553', '241200', '中国,安徽省,芜湖市,繁昌县', '118.2', '31.0832', 'Fanchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340223', '南陵县', '340200', '南陵', '3', '553', '242400', '中国,安徽省,芜湖市,南陵县', '118.337', '30.9197', 'Nanling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340225', '无为县', '340200', '无为', '3', '565', '238300', '中国,安徽省,芜湖市,无为县', '117.911', '31.3031', 'Wuwei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340300', '蚌埠市', '340000', '蚌埠', '2', '552', '233000', '中国,安徽省,蚌埠市', '117.362', '32.934', 'Bengbu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340302', '龙子湖区', '340300', '龙子湖', '3', '552', '233000', '中国,安徽省,蚌埠市,龙子湖区', '117.394', '32.943', 'Longzihu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340303', '蚌山区', '340300', '蚌山', '3', '552', '233000', '中国,安徽省,蚌埠市,蚌山区', '117.368', '32.9441', 'Bengshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340304', '禹会区', '340300', '禹会', '3', '552', '233010', '中国,安徽省,蚌埠市,禹会区', '117.353', '32.9334', 'Yuhui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340311', '淮上区', '340300', '淮上', '3', '552', '233002', '中国,安徽省,蚌埠市,淮上区', '117.36', '32.9642', 'Huaishang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340321', '怀远县', '340300', '怀远', '3', '552', '233400', '中国,安徽省,蚌埠市,怀远县', '117.205', '32.9701', 'Huaiyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340322', '五河县', '340300', '五河', '3', '552', '233300', '中国,安徽省,蚌埠市,五河县', '117.891', '33.1446', 'Wuhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340323', '固镇县', '340300', '固镇', '3', '552', '233700', '中国,安徽省,蚌埠市,固镇县', '117.316', '33.318', 'Guzhen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340400', '淮南市', '340000', '淮南', '2', '554', '232001', '中国,安徽省,淮南市', '117.025', '32.6459', 'Huainan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340402', '大通区', '340400', '大通', '3', '554', '232033', '中国,安徽省,淮南市,大通区', '117.053', '32.6326', 'Datong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340403', '田家庵区', '340400', '田家庵', '3', '554', '232000', '中国,安徽省,淮南市,田家庵区', '117.017', '32.647', 'Tianjiaan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340404', '谢家集区', '340400', '谢家集', '3', '554', '232052', '中国,安徽省,淮南市,谢家集区', '116.864', '32.5982', 'Xiejiaji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340405', '八公山区', '340400', '八公山', '3', '554', '232072', '中国,安徽省,淮南市,八公山区', '116.837', '32.6294', 'Bagongshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340406', '潘集区', '340400', '潘集', '3', '554', '232082', '中国,安徽省,淮南市,潘集区', '116.816', '32.7829', 'Panji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340421', '凤台县', '340400', '凤台', '3', '554', '232100', '中国,安徽省,淮南市,凤台县', '116.716', '32.7075', 'Fengtai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340500', '马鞍山市', '340000', '马鞍山', '2', '555', '243001', '中国,安徽省,马鞍山市', '118.508', '31.6894', 'Maanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340503', '花山区', '340500', '花山', '3', '555', '243000', '中国,安徽省,马鞍山市,花山区', '118.512', '31.7001', 'Huashan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340504', '雨山区', '340500', '雨山', '3', '555', '243071', '中国,安徽省,马鞍山市,雨山区', '118.499', '31.6822', 'Yushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340506', '博望区', '340500', '博望', '3', '555', '243131', '中国,安徽省,马鞍山市,博望区', '118.844', '31.5619', 'Bowang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340521', '当涂县', '340500', '当涂', '3', '555', '243100', '中国,安徽省,马鞍山市,当涂县', '118.498', '31.571', 'Dangtu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340522', '含山县', '340500', '含山', '3', '555', '238100', '中国,安徽省,马鞍山市,含山县', '118.106', '31.7278', 'Hanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340523', '和县', '340500', '和县', '3', '555', '238200', '中国,安徽省,马鞍山市,和县', '118.351', '31.7418', 'Hexian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340600', '淮北市', '340000', '淮北', '2', '561', '235000', '中国,安徽省,淮北市', '116.795', '33.9717', 'Huaibei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340602', '杜集区', '340600', '杜集', '3', '561', '235000', '中国,安徽省,淮北市,杜集区', '116.83', '33.9936', 'Duji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340603', '相山区', '340600', '相山', '3', '561', '235000', '中国,安徽省,淮北市,相山区', '116.795', '33.9598', 'Xiangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340604', '烈山区', '340600', '烈山', '3', '561', '235000', '中国,安徽省,淮北市,烈山区', '116.814', '33.8936', 'Lieshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340621', '濉溪县', '340600', '濉溪', '3', '561', '235100', '中国,安徽省,淮北市,濉溪县', '116.768', '33.9146', 'Suixi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340700', '铜陵市', '340000', '铜陵', '2', '562', '244000', '中国,安徽省,铜陵市', '117.817', '30.9299', 'Tongling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340702', '铜官山区', '340700', '铜官山', '3', '562', '244000', '中国,安徽省,铜陵市,铜官山区', '117.815', '30.9342', 'Tongguanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340703', '狮子山区', '340700', '狮子山', '3', '562', '244000', '中国,安徽省,铜陵市,狮子山区', '117.892', '30.9263', 'Shizishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340711', '郊区', '340700', '郊区', '3', '562', '244000', '中国,安徽省,铜陵市,郊区', '117.809', '30.9198', 'Jiaoqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340721', '铜陵县', '340700', '铜陵', '3', '562', '244100', '中国,安徽省,铜陵市,铜陵县', '117.791', '30.9536', 'Tongling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340800', '安庆市', '340000', '安庆', '2', '556', '246001', '中国,安徽省,安庆市', '117.054', '30.5248', 'Anqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340802', '迎江区', '340800', '迎江', '3', '556', '246001', '中国,安徽省,安庆市,迎江区', '117.049', '30.5042', 'Yingjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340803', '大观区', '340800', '大观', '3', '556', '246002', '中国,安徽省,安庆市,大观区', '117.034', '30.5122', 'Daguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340811', '宜秀区', '340800', '宜秀', '3', '556', '246003', '中国,安徽省,安庆市,宜秀区', '117.061', '30.5078', 'Yixiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340822', '怀宁县', '340800', '怀宁', '3', '556', '246100', '中国,安徽省,安庆市,怀宁县', '116.83', '30.7338', 'Huaining', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340823', '枞阳县', '340800', '枞阳', '3', '556', '246700', '中国,安徽省,安庆市,枞阳县', '117.22', '30.6996', 'Zongyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340824', '潜山县', '340800', '潜山', '3', '556', '246300', '中国,安徽省,安庆市,潜山县', '116.576', '30.6304', 'Qianshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340825', '太湖县', '340800', '太湖', '3', '556', '246400', '中国,安徽省,安庆市,太湖县', '116.309', '30.4541', 'Taihu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340826', '宿松县', '340800', '宿松', '3', '556', '246500', '中国,安徽省,安庆市,宿松县', '116.129', '30.1536', 'Susong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340827', '望江县', '340800', '望江', '3', '556', '246200', '中国,安徽省,安庆市,望江县', '116.688', '30.1259', 'Wangjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340828', '岳西县', '340800', '岳西', '3', '556', '246600', '中国,安徽省,安庆市,岳西县', '116.36', '30.8498', 'Yuexi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('340881', '桐城市', '340800', '桐城', '3', '556', '231400', '中国,安徽省,安庆市,桐城市', '116.951', '31.0522', 'Tongcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341000', '黄山市', '340000', '黄山', '2', '559', '245000', '中国,安徽省,黄山市', '118.317', '29.7092', 'Huangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341002', '屯溪区', '341000', '屯溪', '3', '559', '245000', '中国,安徽省,黄山市,屯溪区', '118.334', '29.7114', 'Tunxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341003', '黄山区', '341000', '黄山', '3', '559', '242700', '中国,安徽省,黄山市,黄山区', '118.142', '30.2729', 'Huangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341004', '徽州区', '341000', '徽州', '3', '559', '245061', '中国,安徽省,黄山市,徽州区', '118.337', '29.8278', 'Huizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341021', '歙县', '341000', '歙县', '3', '559', '245200', '中国,安徽省,黄山市,歙县', '118.437', '29.8675', 'Shexian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341022', '休宁县', '341000', '休宁', '3', '559', '245400', '中国,安徽省,黄山市,休宁县', '118.181', '29.7861', 'Xiuning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341023', '黟县', '341000', '黟县', '3', '559', '245500', '中国,安徽省,黄山市,黟县', '117.941', '29.9259', 'Yixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341024', '祁门县', '341000', '祁门', '3', '559', '245600', '中国,安徽省,黄山市,祁门县', '117.718', '29.8572', 'Qimen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341100', '滁州市', '340000', '滁州', '2', '550', '239000', '中国,安徽省,滁州市', '118.316', '32.3036', 'Chuzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341102', '琅琊区', '341100', '琅琊', '3', '550', '239000', '中国,安徽省,滁州市,琅琊区', '118.305', '32.2952', 'Langya', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341103', '南谯区', '341100', '南谯', '3', '550', '239000', '中国,安徽省,滁州市,南谯区', '118.312', '32.3186', 'Nanqiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341122', '来安县', '341100', '来安', '3', '550', '239200', '中国,安徽省,滁州市,来安县', '118.434', '32.4518', 'Laian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341124', '全椒县', '341100', '全椒', '3', '550', '239500', '中国,安徽省,滁州市,全椒县', '118.273', '32.0852', 'Quanjiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341125', '定远县', '341100', '定远', '3', '550', '233200', '中国,安徽省,滁州市,定远县', '117.68', '32.5249', 'Dingyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341126', '凤阳县', '341100', '凤阳', '3', '550', '233100', '中国,安徽省,滁州市,凤阳县', '117.565', '32.8651', 'Fengyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341181', '天长市', '341100', '天长', '3', '550', '239300', '中国,安徽省,滁州市,天长市', '118.999', '32.6912', 'Tianchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341182', '明光市', '341100', '明光', '3', '550', '239400', '中国,安徽省,滁州市,明光市', '117.991', '32.7782', 'Mingguang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341200', '阜阳市', '340000', '阜阳', '2', '558', '236033', '中国,安徽省,阜阳市', '115.82', '32.897', 'Fuyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341202', '颍州区', '341200', '颍州', '3', '558', '236001', '中国,安徽省,阜阳市,颍州区', '115.807', '32.8835', 'Yingzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341203', '颍东区', '341200', '颍东', '3', '558', '236058', '中国,安徽省,阜阳市,颍东区', '115.857', '32.913', 'Yingdong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341204', '颍泉区', '341200', '颍泉', '3', '558', '236045', '中国,安徽省,阜阳市,颍泉区', '115.807', '32.9249', 'Yingquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341221', '临泉县', '341200', '临泉', '3', '558', '236400', '中国,安徽省,阜阳市,临泉县', '115.262', '33.0676', 'Linquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341222', '太和县', '341200', '太和', '3', '558', '236600', '中国,安徽省,阜阳市,太和县', '115.622', '33.1603', 'Taihe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341225', '阜南县', '341200', '阜南', '3', '558', '236300', '中国,安徽省,阜阳市,阜南县', '115.586', '32.6355', 'Funan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341226', '颍上县', '341200', '颍上', '3', '558', '236200', '中国,安徽省,阜阳市,颍上县', '116.265', '32.63', 'Yingshang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341282', '界首市', '341200', '界首', '3', '558', '236500', '中国,安徽省,阜阳市,界首市', '115.374', '33.2571', 'Jieshou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341300', '宿州市', '340000', '宿州', '2', '557', '234000', '中国,安徽省,宿州市', '116.984', '33.6339', 'Suzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341302', '埇桥区', '341300', '埇桥', '3', '557', '234000', '中国,安徽省,宿州市,埇桥区', '116.977', '33.6406', 'Yongqiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341321', '砀山县', '341300', '砀山', '3', '557', '235300', '中国,安徽省,宿州市,砀山县', '116.354', '34.4236', 'Dangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341322', '萧县', '341300', '萧县', '3', '557', '235200', '中国,安徽省,宿州市,萧县', '116.945', '34.1879', 'Xiaoxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341323', '灵璧县', '341300', '灵璧', '3', '557', '234200', '中国,安徽省,宿州市,灵璧县', '117.558', '33.5434', 'Lingbi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341324', '泗县', '341300', '泗县', '3', '557', '234300', '中国,安徽省,宿州市,泗县', '117.91', '33.4829', 'Sixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341500', '六安市', '340000', '六安', '2', '564', '237000', '中国,安徽省,六安市', '116.508', '31.7529', 'Luan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341502', '金安区', '341500', '金安', '3', '564', '237005', '中国,安徽省,六安市,金安区', '116.509', '31.7557', 'Jinan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341503', '裕安区', '341500', '裕安', '3', '564', '237010', '中国,安徽省,六安市,裕安区', '116.48', '31.7379', 'Yuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341521', '寿县', '341500', '寿县', '3', '564', '232200', '中国,安徽省,六安市,寿县', '116.785', '32.5765', 'Shouxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341522', '霍邱县', '341500', '霍邱', '3', '564', '237400', '中国,安徽省,六安市,霍邱县', '116.278', '32.353', 'Huoqiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341523', '舒城县', '341500', '舒城', '3', '564', '231300', '中国,安徽省,六安市,舒城县', '116.945', '31.4641', 'Shucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341524', '金寨县', '341500', '金寨', '3', '564', '237300', '中国,安徽省,六安市,金寨县', '115.935', '31.7351', 'Jinzhai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341525', '霍山县', '341500', '霍山', '3', '564', '237200', '中国,安徽省,六安市,霍山县', '116.333', '31.3929', 'Huoshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341600', '亳州市', '340000', '亳州', '2', '558', '236802', '中国,安徽省,亳州市', '115.783', '33.8693', 'Bozhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341602', '谯城区', '341600', '谯城', '3', '558', '236800', '中国,安徽省,亳州市,谯城区', '115.779', '33.8753', 'Qiaocheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341621', '涡阳县', '341600', '涡阳', '3', '558', '233600', '中国,安徽省,亳州市,涡阳县', '116.217', '33.5091', 'Guoyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341622', '蒙城县', '341600', '蒙城', '3', '558', '233500', '中国,安徽省,亳州市,蒙城县', '116.565', '33.2648', 'Mengcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341623', '利辛县', '341600', '利辛', '3', '558', '236700', '中国,安徽省,亳州市,利辛县', '116.208', '33.142', 'Lixin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341700', '池州市', '340000', '池州', '2', '566', '247100', '中国,安徽省,池州市', '117.489', '30.656', 'Chizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341702', '贵池区', '341700', '贵池', '3', '566', '247100', '中国,安徽省,池州市,贵池区', '117.487', '30.6528', 'Guichi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341721', '东至县', '341700', '东至', '3', '566', '247200', '中国,安徽省,池州市,东至县', '117.027', '30.0969', 'Dongzhi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341722', '石台县', '341700', '石台', '3', '566', '245100', '中国,安徽省,池州市,石台县', '117.487', '30.2104', 'Shitai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341723', '青阳县', '341700', '青阳', '3', '566', '242800', '中国,安徽省,池州市,青阳县', '117.847', '30.6393', 'Qingyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341800', '宣城市', '340000', '宣城', '2', '563', '242000', '中国,安徽省,宣城市', '118.758', '30.9457', 'Xuancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341802', '宣州区', '341800', '宣州', '3', '563', '242000', '中国,安徽省,宣城市,宣州区', '118.755', '30.9444', 'Xuanzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341821', '郎溪县', '341800', '郎溪', '3', '563', '242100', '中国,安徽省,宣城市,郎溪县', '119.179', '31.126', 'Langxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341822', '广德县', '341800', '广德', '3', '563', '242200', '中国,安徽省,宣城市,广德县', '119.418', '30.8937', 'Guangde', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341823', '泾县', '341800', '泾县', '3', '563', '242500', '中国,安徽省,宣城市,泾县', '118.42', '30.695', 'Jingxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341824', '绩溪县', '341800', '绩溪', '3', '563', '245300', '中国,安徽省,宣城市,绩溪县', '118.598', '30.0707', 'Jixi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341825', '旌德县', '341800', '旌德', '3', '563', '242600', '中国,安徽省,宣城市,旌德县', '118.543', '30.289', 'Jingde', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('341881', '宁国市', '341800', '宁国', '3', '563', '242300', '中国,安徽省,宣城市,宁国市', '118.983', '30.6238', 'Ningguo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350000', '福建省', '100000', '福建', '1', '0', '0', '中国,福建省', '119.306', '26.0753', 'Fujian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350100', '福州市', '350000', '福州', '2', '591', '350001', '中国,福建省,福州市', '119.306', '26.0753', 'Fuzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350102', '鼓楼区', '350100', '鼓楼', '3', '591', '350001', '中国,福建省,福州市,鼓楼区', '119.304', '26.0823', 'Gulou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350103', '台江区', '350100', '台江', '3', '591', '350004', '中国,福建省,福州市,台江区', '119.309', '26.062', 'Taijiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350104', '仓山区', '350100', '仓山', '3', '591', '350007', '中国,福建省,福州市,仓山区', '119.315', '26.0434', 'Cangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350105', '马尾区', '350100', '马尾', '3', '591', '350015', '中国,福建省,福州市,马尾区', '119.455', '25.9894', 'Mawei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350111', '晋安区', '350100', '晋安', '3', '591', '350011', '中国,福建省,福州市,晋安区', '119.328', '26.0818', 'Jinan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350121', '闽侯县', '350100', '闽侯', '3', '591', '350100', '中国,福建省,福州市,闽侯县', '119.134', '26.1501', 'Minhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350122', '连江县', '350100', '连江', '3', '591', '350500', '中国,福建省,福州市,连江县', '119.534', '26.1947', 'Lianjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350123', '罗源县', '350100', '罗源', '3', '591', '350600', '中国,福建省,福州市,罗源县', '119.551', '26.4875', 'Luoyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350124', '闽清县', '350100', '闽清', '3', '591', '350800', '中国,福建省,福州市,闽清县', '118.862', '26.219', 'Minqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350125', '永泰县', '350100', '永泰', '3', '591', '350700', '中国,福建省,福州市,永泰县', '118.936', '25.8682', 'Yongtai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350128', '平潭县', '350100', '平潭', '3', '591', '350400', '中国,福建省,福州市,平潭县', '119.791', '25.5037', 'Pingtan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350181', '福清市', '350100', '福清', '3', '591', '350300', '中国,福建省,福州市,福清市', '119.385', '25.7209', 'Fuqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350182', '长乐市', '350100', '长乐', '3', '591', '350200', '中国,福建省,福州市,长乐市', '119.523', '25.9628', 'Changle', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350200', '厦门市', '350000', '厦门', '2', '592', '361003', '中国,福建省,厦门市', '118.11', '24.4905', 'Xiamen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350203', '思明区', '350200', '思明', '3', '592', '361001', '中国,福建省,厦门市,思明区', '118.082', '24.4454', 'Siming', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350205', '海沧区', '350200', '海沧', '3', '592', '361026', '中国,福建省,厦门市,海沧区', '118.033', '24.4846', 'Haicang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350206', '湖里区', '350200', '湖里', '3', '592', '361006', '中国,福建省,厦门市,湖里区', '118.146', '24.5125', 'Huli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350211', '集美区', '350200', '集美', '3', '592', '361021', '中国,福建省,厦门市,集美区', '118.097', '24.5758', 'Jimei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350212', '同安区', '350200', '同安', '3', '592', '361100', '中国,福建省,厦门市,同安区', '118.152', '24.7231', 'Tongan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350213', '翔安区', '350200', '翔安', '3', '592', '361101', '中国,福建省,厦门市,翔安区', '118.248', '24.6186', 'Xiangan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350300', '莆田市', '350000', '莆田', '2', '594', '351100', '中国,福建省,莆田市', '119.008', '25.431', 'Putian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350302', '城厢区', '350300', '城厢', '3', '594', '351100', '中国,福建省,莆田市,城厢区', '118.995', '25.4187', 'Chengxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350303', '涵江区', '350300', '涵江', '3', '594', '351111', '中国,福建省,莆田市,涵江区', '119.116', '25.4588', 'Hanjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350304', '荔城区', '350300', '荔城', '3', '594', '351100', '中国,福建省,莆田市,荔城区', '119.013', '25.4337', 'Licheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350305', '秀屿区', '350300', '秀屿', '3', '594', '351152', '中国,福建省,莆田市,秀屿区', '119.106', '25.3183', 'Xiuyu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350322', '仙游县', '350300', '仙游', '3', '594', '351200', '中国,福建省,莆田市,仙游县', '118.692', '25.3621', 'Xianyou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350400', '三明市', '350000', '三明', '2', '598', '365000', '中国,福建省,三明市', '117.635', '26.2654', 'Sanming', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350402', '梅列区', '350400', '梅列', '3', '598', '365000', '中国,福建省,三明市,梅列区', '117.646', '26.2717', 'Meilie', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350403', '三元区', '350400', '三元', '3', '598', '365001', '中国,福建省,三明市,三元区', '117.608', '26.2337', 'Sanyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350421', '明溪县', '350400', '明溪', '3', '598', '365200', '中国,福建省,三明市,明溪县', '117.205', '26.3529', 'Mingxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350423', '清流县', '350400', '清流', '3', '598', '365300', '中国,福建省,三明市,清流县', '116.815', '26.1714', 'Qingliu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350424', '宁化县', '350400', '宁化', '3', '598', '365400', '中国,福建省,三明市,宁化县', '116.661', '26.2587', 'Ninghua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350425', '大田县', '350400', '大田', '3', '598', '366100', '中国,福建省,三明市,大田县', '117.847', '25.6926', 'Datian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350426', '尤溪县', '350400', '尤溪', '3', '598', '365100', '中国,福建省,三明市,尤溪县', '118.19', '26.17', 'Youxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350427', '沙县', '350400', '沙县', '3', '598', '365500', '中国,福建省,三明市,沙县', '117.793', '26.3962', 'Shaxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350428', '将乐县', '350400', '将乐', '3', '598', '353300', '中国,福建省,三明市,将乐县', '117.473', '26.7284', 'Jiangle', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350429', '泰宁县', '350400', '泰宁', '3', '598', '354400', '中国,福建省,三明市,泰宁县', '117.176', '26.9001', 'Taining', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350430', '建宁县', '350400', '建宁', '3', '598', '354500', '中国,福建省,三明市,建宁县', '116.846', '26.8309', 'Jianning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350481', '永安市', '350400', '永安', '3', '598', '366000', '中国,福建省,三明市,永安市', '117.365', '25.9414', 'Yongan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350500', '泉州市', '350000', '泉州', '2', '595', '362000', '中国,福建省,泉州市', '118.589', '24.9089', 'Quanzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350502', '鲤城区', '350500', '鲤城', '3', '595', '362000', '中国,福建省,泉州市,鲤城区', '118.566', '24.8874', 'Licheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350503', '丰泽区', '350500', '丰泽', '3', '595', '362000', '中国,福建省,泉州市,丰泽区', '118.613', '24.8912', 'Fengze', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350504', '洛江区', '350500', '洛江', '3', '595', '362011', '中国,福建省,泉州市,洛江区', '118.671', '24.9398', 'Luojiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350505', '泉港区', '350500', '泉港', '3', '595', '362114', '中国,福建省,泉州市,泉港区', '118.916', '25.1201', 'Quangang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350521', '惠安县', '350500', '惠安', '3', '595', '362100', '中国,福建省,泉州市,惠安县', '118.797', '25.0306', 'Huian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350524', '安溪县', '350500', '安溪', '3', '595', '362400', '中国,福建省,泉州市,安溪县', '118.187', '25.0563', 'Anxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350525', '永春县', '350500', '永春', '3', '595', '362600', '中国,福建省,泉州市,永春县', '118.294', '25.3218', 'Yongchun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350526', '德化县', '350500', '德化', '3', '595', '362500', '中国,福建省,泉州市,德化县', '118.242', '25.4922', 'Dehua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350527', '金门县', '350500', '金门', '3', '0', '0', '中国,福建省,泉州市,金门县', '118.323', '24.4292', 'Jinmen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350581', '石狮市', '350500', '石狮', '3', '595', '362700', '中国,福建省,泉州市,石狮市', '118.648', '24.7324', 'Shishi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350582', '晋江市', '350500', '晋江', '3', '595', '362200', '中国,福建省,泉州市,晋江市', '118.552', '24.7814', 'Jinjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350583', '南安市', '350500', '南安', '3', '595', '362300', '中国,福建省,泉州市,南安市', '118.386', '24.9606', 'Nanan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350600', '漳州市', '350000', '漳州', '2', '596', '363005', '中国,福建省,漳州市', '117.662', '24.5109', 'Zhangzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350602', '芗城区', '350600', '芗城', '3', '596', '363000', '中国,福建省,漳州市,芗城区', '117.654', '24.5108', 'Xiangcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350603', '龙文区', '350600', '龙文', '3', '596', '363005', '中国,福建省,漳州市,龙文区', '117.71', '24.5032', 'Longwen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350622', '云霄县', '350600', '云霄', '3', '596', '363300', '中国,福建省,漳州市,云霄县', '117.341', '23.9553', 'Yunxiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350623', '漳浦县', '350600', '漳浦', '3', '596', '363200', '中国,福建省,漳州市,漳浦县', '117.614', '24.1171', 'Zhangpu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350624', '诏安县', '350600', '诏安', '3', '596', '363500', '中国,福建省,漳州市,诏安县', '117.175', '23.7115', 'Zhaoan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350625', '长泰县', '350600', '长泰', '3', '596', '363900', '中国,福建省,漳州市,长泰县', '117.759', '24.6253', 'Changtai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350626', '东山县', '350600', '东山', '3', '596', '363400', '中国,福建省,漳州市,东山县', '117.428', '23.7011', 'Dongshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350627', '南靖县', '350600', '南靖', '3', '596', '363600', '中国,福建省,漳州市,南靖县', '117.357', '24.5145', 'Nanjing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350628', '平和县', '350600', '平和', '3', '596', '363700', '中国,福建省,漳州市,平和县', '117.312', '24.364', 'Pinghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350629', '华安县', '350600', '华安', '3', '596', '363800', '中国,福建省,漳州市,华安县', '117.541', '25.0056', 'Huaan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350681', '龙海市', '350600', '龙海', '3', '596', '363100', '中国,福建省,漳州市,龙海市', '117.818', '24.4466', 'Longhai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350700', '南平市', '350000', '南平', '2', '599', '353000', '中国,福建省,南平市', '118.178', '26.6356', 'Nanping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350702', '延平区', '350700', '延平', '3', '600', '353000', '中国,福建省,南平市,延平区', '118.182', '26.6374', 'Yanping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350703', '建阳区', '350700', '建阳', '3', '599', '354200', '中国,福建省,南平市,建阳区', '118.123', '27.3321', 'Jianyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350721', '顺昌县', '350700', '顺昌', '3', '605', '353200', '中国,福建省,南平市,顺昌县', '117.81', '26.793', 'Shunchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350722', '浦城县', '350700', '浦城', '3', '606', '353400', '中国,福建省,南平市,浦城县', '118.54', '27.9189', 'Pucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350723', '光泽县', '350700', '光泽', '3', '607', '354100', '中国,福建省,南平市,光泽县', '117.333', '27.5423', 'Guangze', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350724', '松溪县', '350700', '松溪', '3', '608', '353500', '中国,福建省,南平市,松溪县', '118.785', '27.5262', 'Songxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350725', '政和县', '350700', '政和', '3', '609', '353600', '中国,福建省,南平市,政和县', '118.856', '27.3677', 'Zhenghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350781', '邵武市', '350700', '邵武', '3', '601', '354000', '中国,福建省,南平市,邵武市', '117.492', '27.3403', 'Shaowu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350782', '武夷山市', '350700', '武夷山', '3', '602', '354300', '中国,福建省,南平市,武夷山市', '118.037', '27.7554', 'Wuyishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350783', '建瓯市', '350700', '建瓯', '3', '603', '353100', '中国,福建省,南平市,建瓯市', '118.298', '27.023', 'Jianou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350800', '龙岩市', '350000', '龙岩', '2', '597', '364000', '中国,福建省,龙岩市', '117.03', '25.0916', 'Longyan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350802', '新罗区', '350800', '新罗', '3', '597', '364000', '中国,福建省,龙岩市,新罗区', '117.037', '25.0983', 'Xinluo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350821', '长汀县', '350800', '长汀', '3', '597', '366300', '中国,福建省,龙岩市,长汀县', '116.359', '25.8277', 'Changting', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350822', '永定区', '350800', '永定', '3', '597', '364100', '中国,福建省,龙岩市,永定区', '116.732', '24.723', 'Yongding', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350823', '上杭县', '350800', '上杭', '3', '597', '364200', '中国,福建省,龙岩市,上杭县', '116.42', '25.0494', 'Shanghang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350824', '武平县', '350800', '武平', '3', '597', '364300', '中国,福建省,龙岩市,武平县', '116.102', '25.0924', 'Wuping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350825', '连城县', '350800', '连城', '3', '597', '366200', '中国,福建省,龙岩市,连城县', '116.755', '25.7103', 'Liancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350881', '漳平市', '350800', '漳平', '3', '597', '364400', '中国,福建省,龙岩市,漳平市', '117.42', '25.2911', 'Zhangping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350900', '宁德市', '350000', '宁德', '2', '593', '352100', '中国,福建省,宁德市', '119.527', '26.6592', 'Ningde', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350902', '蕉城区', '350900', '蕉城', '3', '593', '352100', '中国,福建省,宁德市,蕉城区', '119.526', '26.6605', 'Jiaocheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350921', '霞浦县', '350900', '霞浦', '3', '593', '355100', '中国,福建省,宁德市,霞浦县', '119.999', '26.8858', 'Xiapu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350922', '古田县', '350900', '古田', '3', '593', '352200', '中国,福建省,宁德市,古田县', '118.747', '26.5768', 'Gutian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350923', '屏南县', '350900', '屏南', '3', '593', '352300', '中国,福建省,宁德市,屏南县', '118.989', '26.911', 'Pingnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350924', '寿宁县', '350900', '寿宁', '3', '593', '355500', '中国,福建省,宁德市,寿宁县', '119.504', '27.46', 'Shouning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350925', '周宁县', '350900', '周宁', '3', '593', '355400', '中国,福建省,宁德市,周宁县', '119.338', '27.1066', 'Zhouning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350926', '柘荣县', '350900', '柘荣', '3', '593', '355300', '中国,福建省,宁德市,柘荣县', '119.9', '27.2354', 'Zherong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350981', '福安市', '350900', '福安', '3', '593', '355000', '中国,福建省,宁德市,福安市', '119.649', '27.0867', 'Fuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('350982', '福鼎市', '350900', '福鼎', '3', '593', '355200', '中国,福建省,宁德市,福鼎市', '120.217', '27.3243', 'Fuding', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360000', '江西省', '100000', '江西', '1', '0', '0', '中国,江西省', '115.892', '28.6765', 'Jiangxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360100', '南昌市', '360000', '南昌', '2', '791', '330008', '中国,江西省,南昌市', '115.892', '28.6765', 'Nanchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360102', '东湖区', '360100', '东湖', '3', '791', '330006', '中国,江西省,南昌市,东湖区', '115.899', '28.685', 'Donghu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360103', '西湖区', '360100', '西湖', '3', '791', '330009', '中国,江西省,南昌市,西湖区', '115.877', '28.6569', 'Xihu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360104', '青云谱区', '360100', '青云谱', '3', '791', '330001', '中国,江西省,南昌市,青云谱区', '115.915', '28.632', 'Qingyunpu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360105', '湾里区', '360100', '湾里', '3', '791', '330004', '中国,江西省,南昌市,湾里区', '115.731', '28.7153', 'Wanli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360111', '青山湖区', '360100', '青山湖', '3', '791', '330029', '中国,江西省,南昌市,青山湖区', '115.962', '28.6821', 'Qingshanhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360121', '南昌县', '360100', '南昌', '3', '791', '330200', '中国,江西省,南昌市,南昌县', '115.944', '28.5456', 'Nanchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360122', '新建县', '360100', '新建', '3', '791', '330100', '中国,江西省,南昌市,新建县', '115.815', '28.6925', 'Xinjian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360123', '安义县', '360100', '安义', '3', '791', '330500', '中国,江西省,南昌市,安义县', '115.549', '28.846', 'Anyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360124', '进贤县', '360100', '进贤', '3', '791', '331700', '中国,江西省,南昌市,进贤县', '116.241', '28.3768', 'Jinxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360200', '景德镇市', '360000', '景德镇', '2', '798', '333000', '中国,江西省,景德镇市', '117.215', '29.2926', 'Jingdezhen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360202', '昌江区', '360200', '昌江', '3', '799', '333000', '中国,江西省,景德镇市,昌江区', '117.184', '29.2732', 'Changjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360203', '珠山区', '360200', '珠山', '3', '800', '333000', '中国,江西省,景德镇市,珠山区', '117.202', '29.3013', 'Zhushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360222', '浮梁县', '360200', '浮梁', '3', '802', '333400', '中国,江西省,景德镇市,浮梁县', '117.215', '29.3516', 'Fuliang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360281', '乐平市', '360200', '乐平', '3', '801', '333300', '中国,江西省,景德镇市,乐平市', '117.129', '28.9629', 'Leping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360300', '萍乡市', '360000', '萍乡', '2', '799', '337000', '中国,江西省,萍乡市', '113.852', '27.6229', 'Pingxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360302', '安源区', '360300', '安源', '3', '800', '337000', '中国,江西省,萍乡市,安源区', '113.891', '27.6165', 'Anyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360313', '湘东区', '360300', '湘东', '3', '801', '337016', '中国,江西省,萍乡市,湘东区', '113.733', '27.6401', 'Xiangdong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360321', '莲花县', '360300', '莲花', '3', '802', '337100', '中国,江西省,萍乡市,莲花县', '113.961', '27.1287', 'Lianhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360322', '上栗县', '360300', '上栗', '3', '803', '337009', '中国,江西省,萍乡市,上栗县', '113.794', '27.8747', 'Shangli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360323', '芦溪县', '360300', '芦溪', '3', '804', '337053', '中国,江西省,萍乡市,芦溪县', '114.03', '27.6306', 'Luxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360400', '九江市', '360000', '九江', '2', '792', '332000', '中国,江西省,九江市', '115.993', '29.712', 'Jiujiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360402', '庐山区', '360400', '庐山', '3', '792', '332005', '中国,江西省,九江市,庐山区', '115.989', '29.6718', 'Lushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360403', '浔阳区', '360400', '浔阳', '3', '792', '332000', '中国,江西省,九江市,浔阳区', '115.99', '29.7279', 'Xunyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360421', '九江县', '360400', '九江', '3', '792', '332100', '中国,江西省,九江市,九江县', '115.911', '29.6085', 'Jiujiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360423', '武宁县', '360400', '武宁', '3', '792', '332300', '中国,江西省,九江市,武宁县', '115.101', '29.2584', 'Wuning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360424', '修水县', '360400', '修水', '3', '792', '332400', '中国,江西省,九江市,修水县', '114.547', '29.0254', 'Xiushui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360425', '永修县', '360400', '永修', '3', '792', '330300', '中国,江西省,九江市,永修县', '115.809', '29.0209', 'Yongxiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360426', '德安县', '360400', '德安', '3', '792', '330400', '中国,江西省,九江市,德安县', '115.756', '29.3134', 'Dean', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360427', '星子县', '360400', '星子', '3', '792', '332800', '中国,江西省,九江市,星子县', '116.045', '29.4461', 'Xingzi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360428', '都昌县', '360400', '都昌', '3', '792', '332600', '中国,江西省,九江市,都昌县', '116.204', '29.2733', 'Duchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360429', '湖口县', '360400', '湖口', '3', '792', '332500', '中国,江西省,九江市,湖口县', '116.219', '29.7382', 'Hukou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360430', '彭泽县', '360400', '彭泽', '3', '792', '332700', '中国,江西省,九江市,彭泽县', '116.55', '29.8959', 'Pengze', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360481', '瑞昌市', '360400', '瑞昌', '3', '792', '332200', '中国,江西省,九江市,瑞昌市', '115.667', '29.6718', 'Ruichang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360482', '共青城市', '360400', '共青城', '3', '792', '332020', '中国,江西省,九江市,共青城市', '115.802', '29.2388', 'Gongqingcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360500', '新余市', '360000', '新余', '2', '790', '338025', '中国,江西省,新余市', '114.931', '27.8108', 'Xinyu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360502', '渝水区', '360500', '渝水', '3', '790', '338025', '中国,江西省,新余市,渝水区', '114.944', '27.801', 'Yushui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360521', '分宜县', '360500', '分宜', '3', '790', '336600', '中国,江西省,新余市,分宜县', '114.692', '27.8148', 'Fenyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360600', '鹰潭市', '360000', '鹰潭', '2', '701', '335000', '中国,江西省,鹰潭市', '117.034', '28.2386', 'Yingtan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360602', '月湖区', '360600', '月湖', '3', '701', '335000', '中国,江西省,鹰潭市,月湖区', '117.037', '28.2391', 'Yuehu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360622', '余江县', '360600', '余江', '3', '701', '335200', '中国,江西省,鹰潭市,余江县', '116.819', '28.2103', 'Yujiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360681', '贵溪市', '360600', '贵溪', '3', '701', '335400', '中国,江西省,鹰潭市,贵溪市', '117.242', '28.2926', 'Guixi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360700', '赣州市', '360000', '赣州', '2', '797', '341000', '中国,江西省,赣州市', '114.94', '25.851', 'Ganzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360702', '章贡区', '360700', '章贡', '3', '797', '341000', '中国,江西省,赣州市,章贡区', '114.943', '25.8624', 'Zhanggong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360703', '南康区', '360700', '南康', '3', '797', '341400', '中国,江西省,赣州市,南康区', '114.757', '25.6617', 'Nankang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360721', '赣县', '360700', '赣县', '3', '797', '341100', '中国,江西省,赣州市,赣县', '115.012', '25.8615', 'Ganxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360722', '信丰县', '360700', '信丰', '3', '797', '341600', '中国,江西省,赣州市,信丰县', '114.923', '25.3861', 'Xinfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360723', '大余县', '360700', '大余', '3', '797', '341500', '中国,江西省,赣州市,大余县', '114.358', '25.3956', 'Dayu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360724', '上犹县', '360700', '上犹', '3', '797', '341200', '中国,江西省,赣州市,上犹县', '114.541', '25.7957', 'Shangyou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360725', '崇义县', '360700', '崇义', '3', '797', '341300', '中国,江西省,赣州市,崇义县', '114.308', '25.6819', 'Chongyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360726', '安远县', '360700', '安远', '3', '797', '342100', '中国,江西省,赣州市,安远县', '115.395', '25.1371', 'Anyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360727', '龙南县', '360700', '龙南', '3', '797', '341700', '中国,江西省,赣州市,龙南县', '114.79', '24.9109', 'Longnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360728', '定南县', '360700', '定南', '3', '797', '341900', '中国,江西省,赣州市,定南县', '115.027', '24.784', 'Dingnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360729', '全南县', '360700', '全南', '3', '797', '341800', '中国,江西省,赣州市,全南县', '114.529', '24.7432', 'Quannan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360730', '宁都县', '360700', '宁都', '3', '797', '342800', '中国,江西省,赣州市,宁都县', '116.016', '26.4723', 'Ningdu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360731', '于都县', '360700', '于都', '3', '797', '342300', '中国,江西省,赣州市,于都县', '115.414', '25.9526', 'Yudu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360732', '兴国县', '360700', '兴国', '3', '797', '342400', '中国,江西省,赣州市,兴国县', '115.363', '26.3378', 'Xingguo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360733', '会昌县', '360700', '会昌', '3', '797', '342600', '中国,江西省,赣州市,会昌县', '115.786', '25.6007', 'Huichang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360734', '寻乌县', '360700', '寻乌', '3', '797', '342200', '中国,江西省,赣州市,寻乌县', '115.649', '24.9551', 'Xunwu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360735', '石城县', '360700', '石城', '3', '797', '342700', '中国,江西省,赣州市,石城县', '116.344', '26.3262', 'Shicheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360781', '瑞金市', '360700', '瑞金', '3', '797', '342500', '中国,江西省,赣州市,瑞金市', '116.027', '25.8856', 'Ruijin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360800', '吉安市', '360000', '吉安', '2', '796', '343000', '中国,江西省,吉安市', '114.986', '27.1117', 'Jian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360802', '吉州区', '360800', '吉州', '3', '796', '343000', '中国,江西省,吉安市,吉州区', '114.976', '27.1067', 'Jizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360803', '青原区', '360800', '青原', '3', '796', '343009', '中国,江西省,吉安市,青原区', '115.017', '27.1058', 'Qingyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360821', '吉安县', '360800', '吉安', '3', '796', '343100', '中国,江西省,吉安市,吉安县', '114.907', '27.0405', 'Jian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360822', '吉水县', '360800', '吉水', '3', '796', '331600', '中国,江西省,吉安市,吉水县', '115.134', '27.2107', 'Jishui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360823', '峡江县', '360800', '峡江', '3', '796', '331409', '中国,江西省,吉安市,峡江县', '115.317', '27.576', 'Xiajiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360824', '新干县', '360800', '新干', '3', '796', '331300', '中国,江西省,吉安市,新干县', '115.393', '27.7409', 'Xingan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360825', '永丰县', '360800', '永丰', '3', '796', '331500', '中国,江西省,吉安市,永丰县', '115.442', '27.3179', 'Yongfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360826', '泰和县', '360800', '泰和', '3', '796', '343700', '中国,江西省,吉安市,泰和县', '114.908', '26.7911', 'Taihe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360827', '遂川县', '360800', '遂川', '3', '796', '343900', '中国,江西省,吉安市,遂川县', '114.516', '26.326', 'Suichuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360828', '万安县', '360800', '万安', '3', '796', '343800', '中国,江西省,吉安市,万安县', '114.787', '26.4593', 'Wanan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360829', '安福县', '360800', '安福', '3', '796', '343200', '中国,江西省,吉安市,安福县', '114.62', '27.3928', 'Anfu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360830', '永新县', '360800', '永新', '3', '796', '343400', '中国,江西省,吉安市,永新县', '114.242', '26.9449', 'Yongxin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360881', '井冈山市', '360800', '井冈山', '3', '796', '343600', '中国,江西省,吉安市,井冈山市', '114.289', '26.748', 'Jinggangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360900', '宜春市', '360000', '宜春', '2', '795', '336000', '中国,江西省,宜春市', '114.391', '27.8043', 'Yichun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360902', '袁州区', '360900', '袁州', '3', '795', '336000', '中国,江西省,宜春市,袁州区', '114.382', '27.7965', 'Yuanzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360921', '奉新县', '360900', '奉新', '3', '795', '330700', '中国,江西省,宜春市,奉新县', '115.4', '28.6879', 'Fengxin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360922', '万载县', '360900', '万载', '3', '795', '336100', '中国,江西省,宜春市,万载县', '114.446', '28.1066', 'Wanzai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360923', '上高县', '360900', '上高', '3', '795', '336400', '中国,江西省,宜春市,上高县', '114.925', '28.2342', 'Shanggao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360924', '宜丰县', '360900', '宜丰', '3', '795', '336300', '中国,江西省,宜春市,宜丰县', '114.78', '28.3855', 'Yifeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360925', '靖安县', '360900', '靖安', '3', '795', '330600', '中国,江西省,宜春市,靖安县', '115.363', '28.8617', 'Jingan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360926', '铜鼓县', '360900', '铜鼓', '3', '795', '336200', '中国,江西省,宜春市,铜鼓县', '114.37', '28.5231', 'Tonggu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360981', '丰城市', '360900', '丰城', '3', '795', '331100', '中国,江西省,宜春市,丰城市', '115.771', '28.1592', 'Fengcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360982', '樟树市', '360900', '樟树', '3', '795', '331200', '中国,江西省,宜春市,樟树市', '115.547', '28.0533', 'Zhangshu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('360983', '高安市', '360900', '高安', '3', '795', '330800', '中国,江西省,宜春市,高安市', '115.375', '28.4178', 'Gaoan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361000', '抚州市', '360000', '抚州', '2', '794', '344000', '中国,江西省,抚州市', '116.358', '27.9839', 'Fuzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361002', '临川区', '361000', '临川', '3', '794', '344000', '中国,江西省,抚州市,临川区', '116.359', '27.9772', 'Linchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361021', '南城县', '361000', '南城', '3', '794', '344700', '中国,江西省,抚州市,南城县', '116.644', '27.5538', 'Nancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361022', '黎川县', '361000', '黎川', '3', '794', '344600', '中国,江西省,抚州市,黎川县', '116.908', '27.2823', 'Lichuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361023', '南丰县', '361000', '南丰', '3', '794', '344500', '中国,江西省,抚州市,南丰县', '116.526', '27.2184', 'Nanfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361024', '崇仁县', '361000', '崇仁', '3', '794', '344200', '中国,江西省,抚州市,崇仁县', '116.06', '27.7596', 'Chongren', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361025', '乐安县', '361000', '乐安', '3', '794', '344300', '中国,江西省,抚州市,乐安县', '115.831', '27.4281', 'Lean', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361026', '宜黄县', '361000', '宜黄', '3', '794', '344400', '中国,江西省,抚州市,宜黄县', '116.236', '27.5549', 'Yihuang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361027', '金溪县', '361000', '金溪', '3', '794', '344800', '中国,江西省,抚州市,金溪县', '116.774', '27.9075', 'Jinxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361028', '资溪县', '361000', '资溪', '3', '794', '335300', '中国,江西省,抚州市,资溪县', '117.069', '27.7049', 'Zixi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361029', '东乡县', '361000', '东乡', '3', '794', '331800', '中国,江西省,抚州市,东乡县', '116.59', '28.2361', 'Dongxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361030', '广昌县', '361000', '广昌', '3', '794', '344900', '中国,江西省,抚州市,广昌县', '116.325', '26.8341', 'Guangchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361100', '上饶市', '360000', '上饶', '2', '793', '334000', '中国,江西省,上饶市', '117.971', '28.4444', 'Shangrao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361102', '信州区', '361100', '信州', '3', '793', '334000', '中国,江西省,上饶市,信州区', '117.967', '28.4312', 'Xinzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361121', '上饶县', '361100', '上饶', '3', '793', '334100', '中国,江西省,上饶市,上饶县', '117.909', '28.4486', 'Shangrao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361122', '广丰县', '361100', '广丰', '3', '793', '334600', '中国,江西省,上饶市,广丰县', '118.192', '28.4377', 'Guangfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361123', '玉山县', '361100', '玉山', '3', '793', '334700', '中国,江西省,上饶市,玉山县', '118.245', '28.6818', 'Yushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361124', '铅山县', '361100', '铅山', '3', '793', '334500', '中国,江西省,上饶市,铅山县', '117.71', '28.3155', 'Yanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361125', '横峰县', '361100', '横峰', '3', '793', '334300', '中国,江西省,上饶市,横峰县', '117.596', '28.4072', 'Hengfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361126', '弋阳县', '361100', '弋阳', '3', '793', '334400', '中国,江西省,上饶市,弋阳县', '117.459', '28.3745', 'Yiyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361127', '余干县', '361100', '余干', '3', '793', '335100', '中国,江西省,上饶市,余干县', '116.696', '28.7021', 'Yugan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361128', '鄱阳县', '361100', '鄱阳', '3', '793', '333100', '中国,江西省,上饶市,鄱阳县', '116.7', '29.0118', 'Poyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361129', '万年县', '361100', '万年', '3', '793', '335500', '中国,江西省,上饶市,万年县', '117.069', '28.6954', 'Wannian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361130', '婺源县', '361100', '婺源', '3', '793', '333200', '中国,江西省,上饶市,婺源县', '117.861', '29.2484', 'Wuyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('361181', '德兴市', '361100', '德兴', '3', '793', '334200', '中国,江西省,上饶市,德兴市', '117.579', '28.9474', 'Dexing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370000', '山东省', '100000', '山东', '1', '0', '0', '中国,山东省', '117.001', '36.6758', 'Shandong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370100', '济南市', '370000', '济南', '2', '531', '250001', '中国,山东省,济南市', '117.001', '36.6758', 'Jinan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370102', '历下区', '370100', '历下', '3', '531', '250014', '中国,山东省,济南市,历下区', '117.077', '36.6666', 'Lixia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370103', '市中区', '370100', '市中区', '3', '531', '250001', '中国,山东省,济南市,市中区', '116.997', '36.651', 'Shizhongqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370104', '槐荫区', '370100', '槐荫', '3', '531', '250117', '中国,山东省,济南市,槐荫区', '116.901', '36.6514', 'Huaiyin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370105', '天桥区', '370100', '天桥', '3', '531', '250031', '中国,山东省,济南市,天桥区', '116.987', '36.678', 'Tianqiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370112', '历城区', '370100', '历城', '3', '531', '250100', '中国,山东省,济南市,历城区', '117.065', '36.68', 'Licheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370113', '长清区', '370100', '长清', '3', '531', '250300', '中国,山东省,济南市,长清区', '116.752', '36.5535', 'Changqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370124', '平阴县', '370100', '平阴', '3', '531', '250400', '中国,山东省,济南市,平阴县', '116.456', '36.2896', 'Pingyin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370125', '济阳县', '370100', '济阳', '3', '531', '251400', '中国,山东省,济南市,济阳县', '117.173', '36.9785', 'Jiyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370126', '商河县', '370100', '商河', '3', '531', '251600', '中国,山东省,济南市,商河县', '117.157', '37.3112', 'Shanghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370181', '章丘市', '370100', '章丘', '3', '531', '250200', '中国,山东省,济南市,章丘市', '117.537', '36.7139', 'Zhangqiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370200', '青岛市', '370000', '青岛', '2', '532', '266001', '中国,山东省,青岛市', '120.37', '36.0944', 'Qingdao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370202', '市南区', '370200', '市南', '3', '532', '266001', '中国,山东省,青岛市,市南区', '120.388', '36.0667', 'Shinan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370203', '市北区', '370200', '市北', '3', '532', '266011', '中国,山东省,青岛市,市北区', '120.375', '36.0873', 'Shibei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370211', '黄岛区', '370200', '黄岛', '3', '532', '266500', '中国,山东省,青岛市,黄岛区', '120.198', '35.9607', 'Huangdao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370212', '崂山区', '370200', '崂山', '3', '532', '266100', '中国,山东省,青岛市,崂山区', '120.469', '36.1072', 'Laoshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370213', '李沧区', '370200', '李沧', '3', '532', '266021', '中国,山东省,青岛市,李沧区', '120.433', '36.145', 'Licang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370214', '城阳区', '370200', '城阳', '3', '532', '266041', '中国,山东省,青岛市,城阳区', '120.396', '36.3074', 'Chengyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370281', '胶州市', '370200', '胶州', '3', '532', '266300', '中国,山东省,青岛市,胶州市', '120.034', '36.2644', 'Jiaozhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370282', '即墨市', '370200', '即墨', '3', '532', '266200', '中国,山东省,青岛市,即墨市', '120.447', '36.3891', 'Jimo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370283', '平度市', '370200', '平度', '3', '532', '266700', '中国,山东省,青岛市,平度市', '119.96', '36.7869', 'Pingdu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370285', '莱西市', '370200', '莱西', '3', '532', '266600', '中国,山东省,青岛市,莱西市', '120.518', '36.888', 'Laixi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370286', '西海岸新区', '370200', '西海岸', '3', '532', '266500', '中国,山东省,青岛市,西海岸新区', '120.198', '35.9607', 'Xihaian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370300', '淄博市', '370000', '淄博', '2', '533', '255039', '中国,山东省,淄博市', '118.048', '36.8149', 'Zibo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370302', '淄川区', '370300', '淄川', '3', '533', '255100', '中国,山东省,淄博市,淄川区', '117.967', '36.6434', 'Zichuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370303', '张店区', '370300', '张店', '3', '533', '255022', '中国,山东省,淄博市,张店区', '118.018', '36.8068', 'Zhangdian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370304', '博山区', '370300', '博山', '3', '533', '255200', '中国,山东省,淄博市,博山区', '117.862', '36.4947', 'Boshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370305', '临淄区', '370300', '临淄', '3', '533', '255400', '中国,山东省,淄博市,临淄区', '118.31', '36.8259', 'Linzi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370306', '周村区', '370300', '周村', '3', '533', '255300', '中国,山东省,淄博市,周村区', '117.87', '36.8032', 'Zhoucun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370321', '桓台县', '370300', '桓台', '3', '533', '256400', '中国,山东省,淄博市,桓台县', '118.097', '36.9604', 'Huantai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370322', '高青县', '370300', '高青', '3', '533', '256300', '中国,山东省,淄博市,高青县', '117.827', '37.172', 'Gaoqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370323', '沂源县', '370300', '沂源', '3', '533', '256100', '中国,山东省,淄博市,沂源县', '118.171', '36.1854', 'Yiyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370400', '枣庄市', '370000', '枣庄', '2', '632', '277101', '中国,山东省,枣庄市', '117.558', '34.8564', 'Zaozhuang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370402', '市中区', '370400', '市中区', '3', '632', '277101', '中国,山东省,枣庄市,市中区', '117.556', '34.8639', 'Shizhongqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370403', '薛城区', '370400', '薛城', '3', '632', '277000', '中国,山东省,枣庄市,薛城区', '117.263', '34.795', 'Xuecheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370404', '峄城区', '370400', '峄城', '3', '632', '277300', '中国,山东省,枣庄市,峄城区', '117.591', '34.7723', 'Yicheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370405', '台儿庄区', '370400', '台儿庄', '3', '632', '277400', '中国,山东省,枣庄市,台儿庄区', '117.735', '34.5636', 'Taierzhuang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370406', '山亭区', '370400', '山亭', '3', '632', '277200', '中国,山东省,枣庄市,山亭区', '117.466', '35.0954', 'Shanting', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370481', '滕州市', '370400', '滕州', '3', '632', '277500', '中国,山东省,枣庄市,滕州市', '117.165', '35.1053', 'Tengzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370500', '东营市', '370000', '东营', '2', '546', '257093', '中国,山东省,东营市', '118.496', '37.4613', 'Dongying', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370502', '东营区', '370500', '东营', '3', '546', '257029', '中国,山东省,东营市,东营区', '118.582', '37.4487', 'Dongying', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370503', '河口区', '370500', '河口', '3', '546', '257200', '中国,山东省,东营市,河口区', '118.525', '37.8854', 'Hekou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370521', '垦利县', '370500', '垦利', '3', '546', '257500', '中国,山东省,东营市,垦利县', '118.548', '37.5882', 'Kenli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370522', '利津县', '370500', '利津', '3', '546', '257400', '中国,山东省,东营市,利津县', '118.256', '37.4916', 'Lijin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370523', '广饶县', '370500', '广饶', '3', '546', '257300', '中国,山东省,东营市,广饶县', '118.407', '37.0538', 'Guangrao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370600', '烟台市', '370000', '烟台', '2', '635', '264010', '中国,山东省,烟台市', '121.391', '37.5393', 'Yantai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370602', '芝罘区', '370600', '芝罘', '3', '635', '264001', '中国,山东省,烟台市,芝罘区', '121.4', '37.5406', 'Zhifu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370611', '福山区', '370600', '福山', '3', '635', '265500', '中国,山东省,烟台市,福山区', '121.268', '37.4984', 'Fushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370612', '牟平区', '370600', '牟平', '3', '635', '264100', '中国,山东省,烟台市,牟平区', '121.601', '37.3885', 'Muping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370613', '莱山区', '370600', '莱山', '3', '635', '264600', '中国,山东省,烟台市,莱山区', '121.445', '37.5117', 'Laishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370634', '长岛县', '370600', '长岛', '3', '635', '265800', '中国,山东省,烟台市,长岛县', '120.738', '37.9175', 'Changdao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370681', '龙口市', '370600', '龙口', '3', '635', '265700', '中国,山东省,烟台市,龙口市', '120.506', '37.6406', 'Longkou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370682', '莱阳市', '370600', '莱阳', '3', '635', '265200', '中国,山东省,烟台市,莱阳市', '120.711', '36.9801', 'Laiyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370683', '莱州市', '370600', '莱州', '3', '635', '261400', '中国,山东省,烟台市,莱州市', '119.941', '37.1781', 'Laizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370684', '蓬莱市', '370600', '蓬莱', '3', '635', '265600', '中国,山东省,烟台市,蓬莱市', '120.76', '37.8112', 'Penglai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370685', '招远市', '370600', '招远', '3', '635', '265400', '中国,山东省,烟台市,招远市', '120.405', '37.3627', 'Zhaoyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370686', '栖霞市', '370600', '栖霞', '3', '635', '265300', '中国,山东省,烟台市,栖霞市', '120.85', '37.3357', 'Qixia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370687', '海阳市', '370600', '海阳', '3', '635', '265100', '中国,山东省,烟台市,海阳市', '121.16', '36.7762', 'Haiyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370700', '潍坊市', '370000', '潍坊', '2', '536', '261041', '中国,山东省,潍坊市', '119.107', '36.7093', 'Weifang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370702', '潍城区', '370700', '潍城', '3', '536', '261021', '中国,山东省,潍坊市,潍城区', '119.106', '36.7139', 'Weicheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370703', '寒亭区', '370700', '寒亭', '3', '536', '261100', '中国,山东省,潍坊市,寒亭区', '119.218', '36.775', 'Hanting', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370704', '坊子区', '370700', '坊子', '3', '536', '261200', '中国,山东省,潍坊市,坊子区', '119.165', '36.6522', 'Fangzi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370705', '奎文区', '370700', '奎文', '3', '536', '261031', '中国,山东省,潍坊市,奎文区', '119.125', '36.7072', 'Kuiwen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370724', '临朐县', '370700', '临朐', '3', '536', '262600', '中国,山东省,潍坊市,临朐县', '118.544', '36.5122', 'Linqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370725', '昌乐县', '370700', '昌乐', '3', '536', '262400', '中国,山东省,潍坊市,昌乐县', '118.83', '36.7078', 'Changle', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370781', '青州市', '370700', '青州', '3', '536', '262500', '中国,山东省,潍坊市,青州市', '118.479', '36.6851', 'Qingzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370782', '诸城市', '370700', '诸城', '3', '536', '262200', '中国,山东省,潍坊市,诸城市', '119.41', '35.9966', 'Zhucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370783', '寿光市', '370700', '寿光', '3', '536', '262700', '中国,山东省,潍坊市,寿光市', '118.74', '36.8813', 'Shouguang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370784', '安丘市', '370700', '安丘', '3', '536', '262100', '中国,山东省,潍坊市,安丘市', '119.219', '36.4785', 'Anqiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370785', '高密市', '370700', '高密', '3', '536', '261500', '中国,山东省,潍坊市,高密市', '119.757', '36.384', 'Gaomi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370786', '昌邑市', '370700', '昌邑', '3', '536', '261300', '中国,山东省,潍坊市,昌邑市', '119.398', '36.8601', 'Changyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370800', '济宁市', '370000', '济宁', '2', '537', '272119', '中国,山东省,济宁市', '116.587', '35.4154', 'Jining', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370811', '任城区', '370800', '任城', '3', '537', '272113', '中国,山东省,济宁市,任城区', '116.595', '35.4066', 'Rencheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370812', '兖州区', '370800', '兖州', '3', '537', '272000', '中国,山东省,济宁市,兖州区', '116.827', '35.5523', 'Yanzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370826', '微山县', '370800', '微山', '3', '537', '277600', '中国,山东省,济宁市,微山县', '117.129', '34.8071', 'Weishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370827', '鱼台县', '370800', '鱼台', '3', '537', '272300', '中国,山东省,济宁市,鱼台县', '116.648', '34.9967', 'Yutai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370828', '金乡县', '370800', '金乡', '3', '537', '272200', '中国,山东省,济宁市,金乡县', '116.311', '35.065', 'Jinxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370829', '嘉祥县', '370800', '嘉祥', '3', '537', '272400', '中国,山东省,济宁市,嘉祥县', '116.342', '35.4084', 'Jiaxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370830', '汶上县', '370800', '汶上', '3', '537', '272501', '中国,山东省,济宁市,汶上县', '116.487', '35.7329', 'Wenshang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370831', '泗水县', '370800', '泗水', '3', '537', '273200', '中国,山东省,济宁市,泗水县', '117.279', '35.6611', 'Sishui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370832', '梁山县', '370800', '梁山', '3', '537', '272600', '中国,山东省,济宁市,梁山县', '116.097', '35.8032', 'Liangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370881', '曲阜市', '370800', '曲阜', '3', '537', '273100', '中国,山东省,济宁市,曲阜市', '116.986', '35.5809', 'Qufu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370883', '邹城市', '370800', '邹城', '3', '537', '273500', '中国,山东省,济宁市,邹城市', '116.973', '35.4053', 'Zoucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370900', '泰安市', '370000', '泰安', '2', '538', '271000', '中国,山东省,泰安市', '117.129', '36.195', 'Taian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370902', '泰山区', '370900', '泰山', '3', '538', '271000', '中国,山东省,泰安市,泰山区', '117.134', '36.1941', 'Taishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370911', '岱岳区', '370900', '岱岳', '3', '538', '271000', '中国,山东省,泰安市,岱岳区', '117.042', '36.1875', 'Daiyue', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370921', '宁阳县', '370900', '宁阳', '3', '538', '271400', '中国,山东省,泰安市,宁阳县', '116.805', '35.7599', 'Ningyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370923', '东平县', '370900', '东平', '3', '538', '271500', '中国,山东省,泰安市,东平县', '116.471', '35.9379', 'Dongping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370982', '新泰市', '370900', '新泰', '3', '538', '271200', '中国,山东省,泰安市,新泰市', '117.77', '35.9089', 'Xintai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('370983', '肥城市', '370900', '肥城', '3', '538', '271600', '中国,山东省,泰安市,肥城市', '116.768', '36.1825', 'Feicheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371000', '威海市', '370000', '威海', '2', '631', '264200', '中国,山东省,威海市', '122.116', '37.5097', 'Weihai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371002', '环翠区', '371000', '环翠', '3', '631', '264200', '中国,山东省,威海市,环翠区', '122.123', '37.502', 'Huancui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371003', '文登区', '371000', '文登', '3', '631', '266440', '中国,山东省,威海市,文登区', '122.057', '37.1962', 'Wendeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371082', '荣成市', '371000', '荣成', '3', '631', '264300', '中国,山东省,威海市,荣成市', '122.488', '37.1652', 'Rongcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371083', '乳山市', '371000', '乳山', '3', '631', '264500', '中国,山东省,威海市,乳山市', '121.538', '36.9192', 'Rushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371100', '日照市', '370000', '日照', '2', '633', '276800', '中国,山东省,日照市', '119.461', '35.4286', 'Rizhao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371102', '东港区', '371100', '东港', '3', '633', '276800', '中国,山东省,日照市,东港区', '119.462', '35.4254', 'Donggang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371103', '岚山区', '371100', '岚山', '3', '633', '276808', '中国,山东省,日照市,岚山区', '119.319', '35.122', 'Lanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371121', '五莲县', '371100', '五莲', '3', '633', '262300', '中国,山东省,日照市,五莲县', '119.207', '35.75', 'Wulian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371122', '莒县', '371100', '莒县', '3', '633', '276500', '中国,山东省,日照市,莒县', '118.838', '35.5805', 'Juxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371200', '莱芜市', '370000', '莱芜', '2', '634', '271100', '中国,山东省,莱芜市', '117.678', '36.2144', 'Laiwu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371202', '莱城区', '371200', '莱城', '3', '634', '271199', '中国,山东省,莱芜市,莱城区', '117.66', '36.2032', 'Laicheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371203', '钢城区', '371200', '钢城', '3', '634', '271100', '中国,山东省,莱芜市,钢城区', '117.805', '36.0632', 'Gangcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371300', '临沂市', '370000', '临沂', '2', '539', '253000', '中国,山东省,临沂市', '118.326', '35.0653', 'Linyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371302', '兰山区', '371300', '兰山', '3', '539', '276002', '中国,山东省,临沂市,兰山区', '118.348', '35.0687', 'Lanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371311', '罗庄区', '371300', '罗庄', '3', '539', '276022', '中国,山东省,临沂市,罗庄区', '118.285', '34.9963', 'Luozhuang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371312', '河东区', '371300', '河东', '3', '539', '276034', '中国,山东省,临沂市,河东区', '118.411', '35.088', 'Hedong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371321', '沂南县', '371300', '沂南', '3', '539', '276300', '中国,山东省,临沂市,沂南县', '118.471', '35.5513', 'Yinan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371322', '郯城县', '371300', '郯城', '3', '539', '276100', '中国,山东省,临沂市,郯城县', '118.367', '34.6135', 'Tancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371323', '沂水县', '371300', '沂水', '3', '539', '276400', '中国,山东省,临沂市,沂水县', '118.63', '35.7873', 'Yishui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371324', '兰陵县', '371300', '兰陵', '3', '539', '277700', '中国,山东省,临沂市,兰陵县', '117.857', '34.7383', 'Lanling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371325', '费县', '371300', '费县', '3', '539', '273400', '中国,山东省,临沂市,费县', '117.978', '35.2656', 'Feixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371326', '平邑县', '371300', '平邑', '3', '539', '273300', '中国,山东省,临沂市,平邑县', '117.639', '35.5057', 'Pingyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371327', '莒南县', '371300', '莒南', '3', '539', '276600', '中国,山东省,临沂市,莒南县', '118.832', '35.1754', 'Junan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371328', '蒙阴县', '371300', '蒙阴', '3', '539', '276200', '中国,山东省,临沂市,蒙阴县', '117.946', '35.71', 'Mengyin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371329', '临沭县', '371300', '临沭', '3', '539', '276700', '中国,山东省,临沂市,临沭县', '118.653', '34.9209', 'Linshu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371400', '德州市', '370000', '德州', '2', '534', '253000', '中国,山东省,德州市', '116.307', '37.454', 'Dezhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371402', '德城区', '371400', '德城', '3', '534', '253012', '中国,山东省,德州市,德城区', '116.299', '37.4513', 'Decheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371403', '陵城区', '371400', '陵城', '3', '534', '253500', '中国,山东省,德州市,陵城区', '116.576', '37.3357', 'Lingcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371422', '宁津县', '371400', '宁津', '3', '534', '253400', '中国,山东省,德州市,宁津县', '116.797', '37.653', 'Ningjin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371423', '庆云县', '371400', '庆云', '3', '534', '253700', '中国,山东省,德州市,庆云县', '117.386', '37.7762', 'Qingyun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371424', '临邑县', '371400', '临邑', '3', '534', '251500', '中国,山东省,德州市,临邑县', '116.865', '37.1905', 'Linyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371425', '齐河县', '371400', '齐河', '3', '534', '251100', '中国,山东省,德州市,齐河县', '116.755', '36.7953', 'Qihe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371426', '平原县', '371400', '平原', '3', '534', '253100', '中国,山东省,德州市,平原县', '116.434', '37.1663', 'Pingyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371427', '夏津县', '371400', '夏津', '3', '534', '253200', '中国,山东省,德州市,夏津县', '116.002', '36.9485', 'Xiajin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371428', '武城县', '371400', '武城', '3', '534', '253300', '中国,山东省,德州市,武城县', '116.07', '37.214', 'Wucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371481', '乐陵市', '371400', '乐陵', '3', '534', '253600', '中国,山东省,德州市,乐陵市', '117.231', '37.7316', 'Leling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371482', '禹城市', '371400', '禹城', '3', '534', '251200', '中国,山东省,德州市,禹城市', '116.643', '36.9344', 'Yucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371500', '聊城市', '370000', '聊城', '2', '635', '252052', '中国,山东省,聊城市', '115.98', '36.456', 'Liaocheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371502', '东昌府区', '371500', '东昌府', '3', '635', '252000', '中国,山东省,聊城市,东昌府区', '115.974', '36.4446', 'Dongchangfu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371521', '阳谷县', '371500', '阳谷', '3', '635', '252300', '中国,山东省,聊城市,阳谷县', '115.791', '36.1144', 'Yanggu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371522', '莘县', '371500', '莘县', '3', '635', '252400', '中国,山东省,聊城市,莘县', '115.67', '36.2342', 'Shenxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371523', '茌平县', '371500', '茌平', '3', '635', '252100', '中国,山东省,聊城市,茌平县', '116.255', '36.5797', 'Chiping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371524', '东阿县', '371500', '东阿', '3', '635', '252200', '中国,山东省,聊城市,东阿县', '116.25', '36.3321', 'Donge', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371525', '冠县', '371500', '冠县', '3', '635', '252500', '中国,山东省,聊城市,冠县', '115.442', '36.4843', 'Guanxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371526', '高唐县', '371500', '高唐', '3', '635', '252800', '中国,山东省,聊城市,高唐县', '116.232', '36.8653', 'Gaotang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371581', '临清市', '371500', '临清', '3', '635', '252600', '中国,山东省,聊城市,临清市', '115.706', '36.8395', 'Linqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371600', '滨州市', '370000', '滨州', '2', '543', '256619', '中国,山东省,滨州市', '118.017', '37.3835', 'Binzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371602', '滨城区', '371600', '滨城', '3', '543', '256613', '中国,山东省,滨州市,滨城区', '118.02', '37.3852', 'Bincheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371603', '沾化区', '371600', '沾化', '3', '543', '256800', '中国,山东省,滨州市,沾化区', '118.132', '37.6983', 'Zhanhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371621', '惠民县', '371600', '惠民', '3', '543', '251700', '中国,山东省,滨州市,惠民县', '117.511', '37.4901', 'Huimin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371622', '阳信县', '371600', '阳信', '3', '543', '251800', '中国,山东省,滨州市,阳信县', '117.581', '37.642', 'Yangxin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371623', '无棣县', '371600', '无棣', '3', '543', '251900', '中国,山东省,滨州市,无棣县', '117.614', '37.7401', 'Wudi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371625', '博兴县', '371600', '博兴', '3', '543', '256500', '中国,山东省,滨州市,博兴县', '118.134', '37.1432', 'Boxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371626', '邹平县', '371600', '邹平', '3', '543', '256200', '中国,山东省,滨州市,邹平县', '117.743', '36.8629', 'Zouping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371627', '北海新区', '371600', '北海新区', '3', '543', '256200', '中国,山东省,滨州市,北海新区', '118.017', '37.3835', 'Beihaixinqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371700', '菏泽市', '370000', '菏泽', '2', '530', '274020', '中国,山东省,菏泽市', '115.469', '35.2465', 'Heze', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371702', '牡丹区', '371700', '牡丹', '3', '530', '274009', '中国,山东省,菏泽市,牡丹区', '115.417', '35.2509', 'Mudan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371721', '曹县', '371700', '曹县', '3', '530', '274400', '中国,山东省,菏泽市,曹县', '115.542', '34.8266', 'Caoxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371722', '单县', '371700', '单县', '3', '530', '273700', '中国,山东省,菏泽市,单县', '116.087', '34.7951', 'Shanxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371723', '成武县', '371700', '成武', '3', '530', '274200', '中国,山东省,菏泽市,成武县', '115.89', '34.9533', 'Chengwu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371724', '巨野县', '371700', '巨野', '3', '530', '274900', '中国,山东省,菏泽市,巨野县', '116.095', '35.3979', 'Juye', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371725', '郓城县', '371700', '郓城', '3', '530', '274700', '中国,山东省,菏泽市,郓城县', '115.944', '35.6004', 'Yuncheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371726', '鄄城县', '371700', '鄄城', '3', '530', '274600', '中国,山东省,菏泽市,鄄城县', '115.51', '35.5641', 'Juancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371727', '定陶县', '371700', '定陶', '3', '530', '274100', '中国,山东省,菏泽市,定陶县', '115.573', '35.0712', 'Dingtao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('371728', '东明县', '371700', '东明', '3', '530', '274500', '中国,山东省,菏泽市,东明县', '115.091', '35.2891', 'Dongming', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410000', '河南省', '100000', '河南', '1', '0', '0', '中国,河南省', '113.665', '34.758', 'Henan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410100', '郑州市', '410000', '郑州', '2', '371', '450000', '中国,河南省,郑州市', '113.665', '34.758', 'Zhengzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410102', '中原区', '410100', '中原', '3', '371', '450007', '中国,河南省,郑州市,中原区', '113.613', '34.7483', 'Zhongyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410103', '二七区', '410100', '二七', '3', '371', '450052', '中国,河南省,郑州市,二七区', '113.639', '34.7234', 'Erqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410104', '管城回族区', '410100', '管城', '3', '371', '450000', '中国,河南省,郑州市,管城回族区', '113.677', '34.7538', 'Guancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410105', '金水区', '410100', '金水', '3', '371', '450003', '中国,河南省,郑州市,金水区', '113.661', '34.8003', 'Jinshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410106', '上街区', '410100', '上街', '3', '371', '450041', '中国,河南省,郑州市,上街区', '113.309', '34.8028', 'Shangjie', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410108', '惠济区', '410100', '惠济', '3', '371', '450053', '中国,河南省,郑州市,惠济区', '113.617', '34.8674', 'Huiji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410122', '中牟县', '410100', '中牟', '3', '371', '451450', '中国,河南省,郑州市,中牟县', '113.976', '34.719', 'Zhongmu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410181', '巩义市', '410100', '巩义', '3', '371', '451200', '中国,河南省,郑州市,巩义市', '113.022', '34.7479', 'Gongyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410182', '荥阳市', '410100', '荥阳', '3', '371', '450100', '中国,河南省,郑州市,荥阳市', '113.383', '34.7876', 'Xingyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410183', '新密市', '410100', '新密', '3', '371', '452300', '中国,河南省,郑州市,新密市', '113.387', '34.537', 'Xinmi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410184', '新郑市', '410100', '新郑', '3', '371', '451100', '中国,河南省,郑州市,新郑市', '113.736', '34.3955', 'Xinzheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410185', '登封市', '410100', '登封', '3', '371', '452470', '中国,河南省,郑州市,登封市', '113.05', '34.4534', 'Dengfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410200', '开封市', '410000', '开封', '2', '378', '475001', '中国,河南省,开封市', '114.341', '34.7971', 'Kaifeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410202', '龙亭区', '410200', '龙亭', '3', '378', '475100', '中国,河南省,开封市,龙亭区', '114.355', '34.7999', 'Longting', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410203', '顺河回族区', '410200', '顺河', '3', '378', '475000', '中国,河南省,开封市,顺河回族区', '114.361', '34.7959', 'Shunhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410204', '鼓楼区', '410200', '鼓楼', '3', '378', '475000', '中国,河南省,开封市,鼓楼区', '114.356', '34.7952', 'Gulou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410205', '禹王台区', '410200', '禹王台', '3', '378', '475003', '中国,河南省,开封市,禹王台区', '114.348', '34.7769', 'Yuwangtai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410212', '祥符区', '410200', '祥符', '3', '378', '475100', '中国,河南省,开封市,祥符区', '114.439', '34.7587', 'Xiangfu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410221', '杞县', '410200', '杞县', '3', '378', '475200', '中国,河南省,开封市,杞县', '114.783', '34.5503', 'Qixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410222', '通许县', '410200', '通许', '3', '378', '475400', '中国,河南省,开封市,通许县', '114.467', '34.4752', 'Tongxu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410223', '尉氏县', '410200', '尉氏', '3', '378', '475500', '中国,河南省,开封市,尉氏县', '114.193', '34.4122', 'Weishi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410225', '兰考县', '410200', '兰考', '3', '378', '475300', '中国,河南省,开封市,兰考县', '114.82', '34.8235', 'Lankao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410300', '洛阳市', '410000', '洛阳', '2', '379', '471000', '中国,河南省,洛阳市', '112.434', '34.663', 'Luoyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410302', '老城区', '410300', '老城', '3', '379', '471002', '中国,河南省,洛阳市,老城区', '112.469', '34.6836', 'Laocheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410303', '西工区', '410300', '西工', '3', '379', '471000', '中国,河南省,洛阳市,西工区', '112.437', '34.67', 'Xigong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410304', '瀍河回族区', '410300', '瀍河', '3', '379', '471002', '中国,河南省,洛阳市,瀍河回族区', '112.5', '34.6799', 'Chanhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410305', '涧西区', '410300', '涧西', '3', '379', '471003', '中国,河南省,洛阳市,涧西区', '112.396', '34.6582', 'Jianxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410306', '吉利区', '410300', '吉利', '3', '379', '471012', '中国,河南省,洛阳市,吉利区', '112.589', '34.9009', 'Jili', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410311', '洛龙区', '410300', '洛龙', '3', '379', '471000', '中国,河南省,洛阳市,洛龙区', '112.464', '34.6187', 'Luolong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410322', '孟津县', '410300', '孟津', '3', '379', '471100', '中国,河南省,洛阳市,孟津县', '112.444', '34.826', 'Mengjin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410323', '新安县', '410300', '新安', '3', '379', '471800', '中国,河南省,洛阳市,新安县', '112.132', '34.7281', 'Xinan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410324', '栾川县', '410300', '栾川', '3', '379', '471500', '中国,河南省,洛阳市,栾川县', '111.618', '33.7858', 'Luanchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410325', '嵩县', '410300', '嵩县', '3', '379', '471400', '中国,河南省,洛阳市,嵩县', '112.085', '34.1347', 'Songxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410326', '汝阳县', '410300', '汝阳', '3', '379', '471200', '中国,河南省,洛阳市,汝阳县', '112.473', '34.1539', 'Ruyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410327', '宜阳县', '410300', '宜阳', '3', '379', '471600', '中国,河南省,洛阳市,宜阳县', '112.179', '34.5152', 'Yiyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410328', '洛宁县', '410300', '洛宁', '3', '379', '471700', '中国,河南省,洛阳市,洛宁县', '111.651', '34.3891', 'Luoning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410329', '伊川县', '410300', '伊川', '3', '379', '471300', '中国,河南省,洛阳市,伊川县', '112.429', '34.4221', 'Yichuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410381', '偃师市', '410300', '偃师', '3', '379', '471900', '中国,河南省,洛阳市,偃师市', '112.792', '34.7281', 'Yanshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410400', '平顶山市', '410000', '平顶山', '2', '375', '467000', '中国,河南省,平顶山市', '113.308', '33.7352', 'Pingdingshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410402', '新华区', '410400', '新华', '3', '375', '467002', '中国,河南省,平顶山市,新华区', '113.294', '33.7373', 'Xinhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410403', '卫东区', '410400', '卫东', '3', '375', '467021', '中国,河南省,平顶山市,卫东区', '113.335', '33.7347', 'Weidong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410404', '石龙区', '410400', '石龙', '3', '375', '467045', '中国,河南省,平顶山市,石龙区', '112.899', '33.8988', 'Shilong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410411', '湛河区', '410400', '湛河', '3', '375', '467000', '中国,河南省,平顶山市,湛河区', '113.293', '33.7362', 'Zhanhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410421', '宝丰县', '410400', '宝丰', '3', '375', '467400', '中国,河南省,平顶山市,宝丰县', '113.055', '33.8692', 'Baofeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410422', '叶县', '410400', '叶县', '3', '375', '467200', '中国,河南省,平顶山市,叶县', '113.351', '33.6222', 'Yexian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410423', '鲁山县', '410400', '鲁山', '3', '375', '467300', '中国,河南省,平顶山市,鲁山县', '112.906', '33.7388', 'Lushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410425', '郏县', '410400', '郏县', '3', '375', '467100', '中国,河南省,平顶山市,郏县', '113.216', '33.9707', 'Jiaxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410481', '舞钢市', '410400', '舞钢', '3', '375', '462500', '中国,河南省,平顶山市,舞钢市', '113.524', '33.2938', 'Wugang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410482', '汝州市', '410400', '汝州', '3', '375', '467500', '中国,河南省,平顶山市,汝州市', '112.843', '34.1614', 'Ruzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410500', '安阳市', '410000', '安阳', '2', '372', '455000', '中国,河南省,安阳市', '114.352', '36.1034', 'Anyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410502', '文峰区', '410500', '文峰', '3', '372', '455000', '中国,河南省,安阳市,文峰区', '114.357', '36.0905', 'Wenfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410503', '北关区', '410500', '北关', '3', '372', '455001', '中国,河南省,安阳市,北关区', '114.357', '36.1187', 'Beiguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410505', '殷都区', '410500', '殷都', '3', '372', '455004', '中国,河南省,安阳市,殷都区', '114.303', '36.1099', 'Yindu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410506', '龙安区', '410500', '龙安', '3', '372', '455001', '中国,河南省,安阳市,龙安区', '114.348', '36.119', 'Longan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410522', '安阳县', '410500', '安阳', '3', '372', '455000', '中国,河南省,安阳市,安阳县', '114.366', '36.067', 'Anyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410523', '汤阴县', '410500', '汤阴', '3', '372', '456150', '中国,河南省,安阳市,汤阴县', '114.358', '35.9215', 'Tangyin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410526', '滑县', '410500', '滑县', '3', '372', '456400', '中国,河南省,安阳市,滑县', '114.521', '35.5807', 'Huaxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410527', '内黄县', '410500', '内黄', '3', '372', '456350', '中国,河南省,安阳市,内黄县', '114.907', '35.9527', 'Neihuang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410581', '林州市', '410500', '林州', '3', '372', '456550', '中国,河南省,安阳市,林州市', '113.816', '36.078', 'Linzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410600', '鹤壁市', '410000', '鹤壁', '2', '392', '458030', '中国,河南省,鹤壁市', '114.295', '35.7482', 'Hebi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410602', '鹤山区', '410600', '鹤山', '3', '392', '458010', '中国,河南省,鹤壁市,鹤山区', '114.163', '35.9546', 'Heshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410603', '山城区', '410600', '山城', '3', '392', '458000', '中国,河南省,鹤壁市,山城区', '114.184', '35.8977', 'Shancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410611', '淇滨区', '410600', '淇滨', '3', '392', '458000', '中国,河南省,鹤壁市,淇滨区', '114.299', '35.7413', 'Qibin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410621', '浚县', '410600', '浚县', '3', '392', '456250', '中国,河南省,鹤壁市,浚县', '114.549', '35.6708', 'Xunxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410622', '淇县', '410600', '淇县', '3', '392', '456750', '中国,河南省,鹤壁市,淇县', '114.198', '35.6078', 'Qixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410700', '新乡市', '410000', '新乡', '2', '373', '453000', '中国,河南省,新乡市', '113.884', '35.3026', 'Xinxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410702', '红旗区', '410700', '红旗', '3', '373', '453000', '中国,河南省,新乡市,红旗区', '113.875', '35.3037', 'Hongqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410703', '卫滨区', '410700', '卫滨', '3', '373', '453000', '中国,河南省,新乡市,卫滨区', '113.866', '35.3021', 'Weibin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410704', '凤泉区', '410700', '凤泉', '3', '373', '453011', '中国,河南省,新乡市,凤泉区', '113.915', '35.384', 'Fengquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410711', '牧野区', '410700', '牧野', '3', '373', '453002', '中国,河南省,新乡市,牧野区', '113.909', '35.3149', 'Muye', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410721', '新乡县', '410700', '新乡', '3', '373', '453700', '中国,河南省,新乡市,新乡县', '113.805', '35.1908', 'Xinxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410724', '获嘉县', '410700', '获嘉', '3', '373', '453800', '中国,河南省,新乡市,获嘉县', '113.662', '35.2652', 'Huojia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410725', '原阳县', '410700', '原阳', '3', '373', '453500', '中国,河南省,新乡市,原阳县', '113.94', '35.0657', 'Yuanyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410726', '延津县', '410700', '延津', '3', '373', '453200', '中国,河南省,新乡市,延津县', '114.203', '35.1433', 'Yanjin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410727', '封丘县', '410700', '封丘', '3', '373', '453300', '中国,河南省,新乡市,封丘县', '114.419', '35.0417', 'Fengqiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410728', '长垣县', '410700', '长垣', '3', '373', '453400', '中国,河南省,新乡市,长垣县', '114.669', '35.2005', 'Changyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410781', '卫辉市', '410700', '卫辉', '3', '373', '453100', '中国,河南省,新乡市,卫辉市', '114.065', '35.3984', 'Weihui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410782', '辉县市', '410700', '辉县', '3', '373', '453600', '中国,河南省,新乡市,辉县市', '113.807', '35.4631', 'Huixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410800', '焦作市', '410000', '焦作', '2', '391', '454002', '中国,河南省,焦作市', '113.238', '35.239', 'Jiaozuo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410802', '解放区', '410800', '解放', '3', '391', '454000', '中国,河南省,焦作市,解放区', '113.229', '35.2402', 'Jiefang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410803', '中站区', '410800', '中站', '3', '391', '454191', '中国,河南省,焦作市,中站区', '113.183', '35.2366', 'Zhongzhan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410804', '马村区', '410800', '马村', '3', '391', '454171', '中国,河南省,焦作市,马村区', '113.319', '35.2691', 'Macun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410811', '山阳区', '410800', '山阳', '3', '391', '454002', '中国,河南省,焦作市,山阳区', '113.255', '35.2144', 'Shanyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410821', '修武县', '410800', '修武', '3', '391', '454350', '中国,河南省,焦作市,修武县', '113.448', '35.2236', 'Xiuwu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410822', '博爱县', '410800', '博爱', '3', '391', '454450', '中国,河南省,焦作市,博爱县', '113.067', '35.1694', 'Boai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410823', '武陟县', '410800', '武陟', '3', '391', '454950', '中国,河南省,焦作市,武陟县', '113.397', '35.0951', 'Wuzhi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410825', '温县', '410800', '温县', '3', '391', '454850', '中国,河南省,焦作市,温县', '113.081', '34.9402', 'Wenxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410882', '沁阳市', '410800', '沁阳', '3', '391', '454550', '中国,河南省,焦作市,沁阳市', '112.945', '35.0894', 'Qinyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410883', '孟州市', '410800', '孟州', '3', '391', '454750', '中国,河南省,焦作市,孟州市', '112.791', '34.9071', 'Mengzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410900', '濮阳市', '410000', '濮阳', '2', '393', '457000', '中国,河南省,濮阳市', '115.041', '35.7682', 'Puyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410902', '华龙区', '410900', '华龙', '3', '393', '457001', '中国,河南省,濮阳市,华龙区', '115.074', '35.7774', 'Hualong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410922', '清丰县', '410900', '清丰', '3', '393', '457300', '中国,河南省,濮阳市,清丰县', '115.104', '35.8851', 'Qingfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410923', '南乐县', '410900', '南乐', '3', '393', '457400', '中国,河南省,濮阳市,南乐县', '115.206', '36.0769', 'Nanle', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410926', '范县', '410900', '范县', '3', '393', '457500', '中国,河南省,濮阳市,范县', '115.504', '35.8518', 'Fanxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410927', '台前县', '410900', '台前', '3', '393', '457600', '中国,河南省,濮阳市,台前县', '115.872', '35.9692', 'Taiqian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('410928', '濮阳县', '410900', '濮阳', '3', '393', '457100', '中国,河南省,濮阳市,濮阳县', '115.031', '35.7075', 'Puyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411000', '许昌市', '410000', '许昌', '2', '374', '461000', '中国,河南省,许昌市', '113.826', '34.023', 'Xuchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411002', '魏都区', '411000', '魏都', '3', '374', '461000', '中国,河南省,许昌市,魏都区', '113.823', '34.0254', 'Weidu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411023', '许昌县', '411000', '许昌', '3', '374', '461100', '中国,河南省,许昌市,许昌县', '113.847', '34.0041', 'Xuchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411024', '鄢陵县', '411000', '鄢陵', '3', '374', '461200', '中国,河南省,许昌市,鄢陵县', '114.188', '34.1032', 'Yanling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411025', '襄城县', '411000', '襄城', '3', '374', '461700', '中国,河南省,许昌市,襄城县', '113.482', '33.8493', 'Xiangcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411081', '禹州市', '411000', '禹州', '3', '374', '461670', '中国,河南省,许昌市,禹州市', '113.488', '34.1405', 'Yuzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411082', '长葛市', '411000', '长葛', '3', '374', '461500', '中国,河南省,许昌市,长葛市', '113.773', '34.2185', 'Changge', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411100', '漯河市', '410000', '漯河', '2', '395', '462000', '中国,河南省,漯河市', '114.026', '33.5759', 'Luohe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411102', '源汇区', '411100', '源汇', '3', '395', '462000', '中国,河南省,漯河市,源汇区', '114.006', '33.5563', 'Yuanhui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411103', '郾城区', '411100', '郾城', '3', '395', '462300', '中国,河南省,漯河市,郾城区', '114.007', '33.5872', 'Yancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411104', '召陵区', '411100', '召陵', '3', '395', '462300', '中国,河南省,漯河市,召陵区', '114.094', '33.586', 'Zhaoling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411121', '舞阳县', '411100', '舞阳', '3', '395', '462400', '中国,河南省,漯河市,舞阳县', '113.598', '33.4324', 'Wuyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411122', '临颍县', '411100', '临颍', '3', '395', '462600', '中国,河南省,漯河市,临颍县', '113.937', '33.8112', 'Linying', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411200', '三门峡市', '410000', '三门峡', '2', '398', '472000', '中国,河南省,三门峡市', '111.194', '34.7773', 'Sanmenxia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411202', '湖滨区', '411200', '湖滨', '3', '398', '472000', '中国,河南省,三门峡市,湖滨区', '111.2', '34.7787', 'Hubin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411221', '渑池县', '411200', '渑池', '3', '398', '472400', '中国,河南省,三门峡市,渑池县', '111.762', '34.7673', 'Mianchi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411222', '陕县', '411200', '陕县', '3', '398', '472100', '中国,河南省,三门峡市,陕县', '111.103', '34.7205', 'Shanxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411224', '卢氏县', '411200', '卢氏', '3', '398', '472200', '中国,河南省,三门峡市,卢氏县', '111.048', '34.0544', 'Lushi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411281', '义马市', '411200', '义马', '3', '398', '472300', '中国,河南省,三门峡市,义马市', '111.874', '34.7472', 'Yima', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411282', '灵宝市', '411200', '灵宝', '3', '398', '472500', '中国,河南省,三门峡市,灵宝市', '110.895', '34.5168', 'Lingbao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411300', '南阳市', '410000', '南阳', '2', '377', '473002', '中国,河南省,南阳市', '112.541', '32.9991', 'Nanyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411302', '宛城区', '411300', '宛城', '3', '377', '473001', '中国,河南省,南阳市,宛城区', '112.54', '33.0038', 'Wancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411303', '卧龙区', '411300', '卧龙', '3', '377', '473003', '中国,河南省,南阳市,卧龙区', '112.535', '32.9861', 'Wolong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411321', '南召县', '411300', '南召', '3', '377', '474650', '中国,河南省,南阳市,南召县', '112.432', '33.491', 'Nanzhao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411322', '方城县', '411300', '方城', '3', '377', '473200', '中国,河南省,南阳市,方城县', '113.013', '33.2545', 'Fangcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411323', '西峡县', '411300', '西峡', '3', '377', '474550', '中国,河南省,南阳市,西峡县', '111.482', '33.2977', 'Xixia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411324', '镇平县', '411300', '镇平', '3', '377', '474250', '中国,河南省,南阳市,镇平县', '112.24', '33.0363', 'Zhenping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411325', '内乡县', '411300', '内乡', '3', '377', '474350', '中国,河南省,南阳市,内乡县', '111.85', '33.0467', 'Neixiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411326', '淅川县', '411300', '淅川', '3', '377', '474450', '中国,河南省,南阳市,淅川县', '111.487', '33.1371', 'Xichuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411327', '社旗县', '411300', '社旗', '3', '377', '473300', '中国,河南省,南阳市,社旗县', '112.947', '33.055', 'Sheqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411328', '唐河县', '411300', '唐河', '3', '377', '473400', '中国,河南省,南阳市,唐河县', '112.836', '32.6945', 'Tanghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411329', '新野县', '411300', '新野', '3', '377', '473500', '中国,河南省,南阳市,新野县', '112.362', '32.517', 'Xinye', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411330', '桐柏县', '411300', '桐柏', '3', '377', '474750', '中国,河南省,南阳市,桐柏县', '113.429', '32.3792', 'Tongbai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411381', '邓州市', '411300', '邓州', '3', '377', '474150', '中国,河南省,南阳市,邓州市', '112.09', '32.6858', 'Dengzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411400', '商丘市', '410000', '商丘', '2', '370', '476000', '中国,河南省,商丘市', '115.65', '34.4371', 'Shangqiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411402', '梁园区', '411400', '梁园', '3', '370', '476000', '中国,河南省,商丘市,梁园区', '115.645', '34.4434', 'Liangyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411403', '睢阳区', '411400', '睢阳', '3', '370', '476100', '中国,河南省,商丘市,睢阳区', '115.653', '34.388', 'Suiyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411421', '民权县', '411400', '民权', '3', '370', '476800', '中国,河南省,商丘市,民权县', '115.146', '34.6493', 'Minquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411422', '睢县', '411400', '睢县', '3', '370', '476900', '中国,河南省,商丘市,睢县', '115.072', '34.4454', 'Suixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411423', '宁陵县', '411400', '宁陵', '3', '370', '476700', '中国,河南省,商丘市,宁陵县', '115.305', '34.4546', 'Ningling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411424', '柘城县', '411400', '柘城', '3', '370', '476200', '中国,河南省,商丘市,柘城县', '115.305', '34.0911', 'Zhecheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411425', '虞城县', '411400', '虞城', '3', '370', '476300', '中国,河南省,商丘市,虞城县', '115.863', '34.4019', 'Yucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411426', '夏邑县', '411400', '夏邑', '3', '370', '476400', '中国,河南省,商丘市,夏邑县', '116.133', '34.2324', 'Xiayi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411481', '永城市', '411400', '永城', '3', '370', '476600', '中国,河南省,商丘市,永城市', '116.449', '33.9291', 'Yongcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411500', '信阳市', '410000', '信阳', '2', '376', '464000', '中国,河南省,信阳市', '114.075', '32.1233', 'Xinyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411502', '浉河区', '411500', '浉河', '3', '376', '464000', '中国,河南省,信阳市,浉河区', '114.059', '32.1168', 'Shihe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411503', '平桥区', '411500', '平桥', '3', '376', '464100', '中国,河南省,信阳市,平桥区', '114.124', '32.1009', 'Pingqiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411521', '罗山县', '411500', '罗山', '3', '376', '464200', '中国,河南省,信阳市,罗山县', '114.531', '32.2028', 'Luoshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411522', '光山县', '411500', '光山', '3', '376', '465450', '中国,河南省,信阳市,光山县', '114.919', '32.0099', 'Guangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411523', '新县', '411500', '新县', '3', '376', '465550', '中国,河南省,信阳市,新县', '114.879', '31.6439', 'Xinxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411524', '商城县', '411500', '商城', '3', '376', '465350', '中国,河南省,信阳市,商城县', '115.409', '31.7999', 'Shangcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411525', '固始县', '411500', '固始', '3', '376', '465250', '中国,河南省,信阳市,固始县', '115.683', '32.1801', 'Gushi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411526', '潢川县', '411500', '潢川', '3', '376', '465150', '中国,河南省,信阳市,潢川县', '115.047', '32.1376', 'Huangchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411527', '淮滨县', '411500', '淮滨', '3', '376', '464400', '中国,河南省,信阳市,淮滨县', '115.421', '32.4661', 'Huaibin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411528', '息县', '411500', '息县', '3', '376', '464300', '中国,河南省,信阳市,息县', '114.74', '32.3428', 'Xixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411600', '周口市', '410000', '周口', '2', '394', '466000', '中国,河南省,周口市', '114.65', '33.6204', 'Zhoukou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411602', '川汇区', '411600', '川汇', '3', '394', '466000', '中国,河南省,周口市,川汇区', '114.642', '33.6256', 'Chuanhui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411621', '扶沟县', '411600', '扶沟', '3', '394', '461300', '中国,河南省,周口市,扶沟县', '114.395', '34.06', 'Fugou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411622', '西华县', '411600', '西华', '3', '394', '466600', '中国,河南省,周口市,西华县', '114.523', '33.7855', 'Xihua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411623', '商水县', '411600', '商水', '3', '394', '466100', '中国,河南省,周口市,商水县', '114.606', '33.5391', 'Shangshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411624', '沈丘县', '411600', '沈丘', '3', '394', '466300', '中国,河南省,周口市,沈丘县', '115.099', '33.4094', 'Shenqiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411625', '郸城县', '411600', '郸城', '3', '394', '477150', '中国,河南省,周口市,郸城县', '115.177', '33.6449', 'Dancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411626', '淮阳县', '411600', '淮阳', '3', '394', '466700', '中国,河南省,周口市,淮阳县', '114.888', '33.7321', 'Huaiyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411627', '太康县', '411600', '太康', '3', '394', '461400', '中国,河南省,周口市,太康县', '114.838', '34.0638', 'Taikang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411628', '鹿邑县', '411600', '鹿邑', '3', '394', '477200', '中国,河南省,周口市,鹿邑县', '115.486', '33.8593', 'Luyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411681', '项城市', '411600', '项城', '3', '394', '466200', '中国,河南省,周口市,项城市', '114.876', '33.4672', 'Xiangcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411700', '驻马店市', '410000', '驻马店', '2', '396', '463000', '中国,河南省,驻马店市', '114.025', '32.9802', 'Zhumadian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411702', '驿城区', '411700', '驿城', '3', '396', '463000', '中国,河南省,驻马店市,驿城区', '113.994', '32.9732', 'Yicheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411721', '西平县', '411700', '西平', '3', '396', '463900', '中国,河南省,驻马店市,西平县', '114.023', '33.3845', 'Xiping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411722', '上蔡县', '411700', '上蔡', '3', '396', '463800', '中国,河南省,驻马店市,上蔡县', '114.268', '33.2682', 'Shangcai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411723', '平舆县', '411700', '平舆', '3', '396', '463400', '中国,河南省,驻马店市,平舆县', '114.636', '32.9573', 'Pingyu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411724', '正阳县', '411700', '正阳', '3', '396', '463600', '中国,河南省,驻马店市,正阳县', '114.39', '32.6039', 'Zhengyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411725', '确山县', '411700', '确山', '3', '396', '463200', '中国,河南省,驻马店市,确山县', '114.029', '32.8028', 'Queshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411726', '泌阳县', '411700', '泌阳', '3', '396', '463700', '中国,河南省,驻马店市,泌阳县', '113.327', '32.7178', 'Biyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411727', '汝南县', '411700', '汝南', '3', '396', '463300', '中国,河南省,驻马店市,汝南县', '114.361', '33.0046', 'Runan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411728', '遂平县', '411700', '遂平', '3', '396', '463100', '中国,河南省,驻马店市,遂平县', '114.013', '33.1457', 'Suiping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('411729', '新蔡县', '411700', '新蔡', '3', '396', '463500', '中国,河南省,驻马店市,新蔡县', '114.982', '32.7502', 'Xincai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('419001', '济源市', '410000', '济源', '2', '391', '454650', '中国,河南省,济源市', '112.59', '35.0904', 'Jiyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420000', '湖北省', '100000', '湖北', '1', '0', '0', '中国,湖北省', '114.299', '30.5844', 'Hubei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420100', '武汉市', '420000', '武汉', '2', '0', '430014', '中国,湖北省,武汉市', '114.299', '30.5844', 'Wuhan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420102', '江岸区', '420100', '江岸', '3', '27', '430014', '中国,湖北省,武汉市,江岸区', '114.309', '30.5998', 'Jiangan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420103', '江汉区', '420100', '江汉', '3', '27', '430021', '中国,湖北省,武汉市,江汉区', '114.271', '30.6015', 'Jianghan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420104', '硚口区', '420100', '硚口', '3', '27', '430033', '中国,湖北省,武汉市,硚口区', '114.264', '30.5695', 'Qiaokou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420105', '汉阳区', '420100', '汉阳', '3', '27', '430050', '中国,湖北省,武汉市,汉阳区', '114.275', '30.5492', 'Hanyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420106', '武昌区', '420100', '武昌', '3', '27', '430061', '中国,湖北省,武汉市,武昌区', '114.316', '30.5539', 'Wuchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420107', '青山区', '420100', '青山', '3', '27', '430080', '中国,湖北省,武汉市,青山区', '114.391', '30.6343', 'Qingshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420111', '洪山区', '420100', '洪山', '3', '27', '430070', '中国,湖北省,武汉市,洪山区', '114.344', '30.4999', 'Hongshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420112', '东西湖区', '420100', '东西湖', '3', '27', '430040', '中国,湖北省,武汉市,东西湖区', '114.137', '30.6199', 'Dongxihu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420113', '汉南区', '420100', '汉南', '3', '27', '430090', '中国,湖北省,武汉市,汉南区', '114.085', '30.3088', 'Hannan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420114', '蔡甸区', '420100', '蔡甸', '3', '27', '430100', '中国,湖北省,武汉市,蔡甸区', '114.029', '30.582', 'Caidian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420115', '江夏区', '420100', '江夏', '3', '27', '430200', '中国,湖北省,武汉市,江夏区', '114.313', '30.3465', 'Jiangxia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420116', '黄陂区', '420100', '黄陂', '3', '27', '432200', '中国,湖北省,武汉市,黄陂区', '114.375', '30.8815', 'Huangpi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420117', '新洲区', '420100', '新洲', '3', '27', '431400', '中国,湖北省,武汉市,新洲区', '114.801', '30.8414', 'Xinzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420200', '黄石市', '420000', '黄石', '2', '714', '435003', '中国,湖北省,黄石市', '115.077', '30.2201', 'Huangshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420202', '黄石港区', '420200', '黄石港', '3', '714', '435000', '中国,湖北省,黄石市,黄石港区', '115.066', '30.2228', 'Huangshigang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420203', '西塞山区', '420200', '西塞山', '3', '714', '435001', '中国,湖北省,黄石市,西塞山区', '115.11', '30.2049', 'Xisaishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420204', '下陆区', '420200', '下陆', '3', '714', '435005', '中国,湖北省,黄石市,下陆区', '114.961', '30.1737', 'Xialu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420205', '铁山区', '420200', '铁山', '3', '714', '435006', '中国,湖北省,黄石市,铁山区', '114.901', '30.2068', 'Tieshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420222', '阳新县', '420200', '阳新', '3', '714', '435200', '中国,湖北省,黄石市,阳新县', '115.215', '29.8304', 'Yangxin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420281', '大冶市', '420200', '大冶', '3', '714', '435100', '中国,湖北省,黄石市,大冶市', '114.972', '30.0944', 'Daye', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420300', '十堰市', '420000', '十堰', '2', '719', '442000', '中国,湖北省,十堰市', '110.785', '32.647', 'Shiyan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420302', '茅箭区', '420300', '茅箭', '3', '719', '442012', '中国,湖北省,十堰市,茅箭区', '110.813', '32.5915', 'Maojian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420303', '张湾区', '420300', '张湾', '3', '719', '442001', '中国,湖北省,十堰市,张湾区', '110.771', '32.652', 'Zhangwan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420304', '郧阳区', '420300', '郧阳', '3', '719', '442500', '中国,湖北省,十堰市,郧阳区', '110.819', '32.8359', 'Yunyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420322', '郧西县', '420300', '郧西', '3', '719', '442600', '中国,湖北省,十堰市,郧西县', '110.426', '32.9935', 'Yunxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420323', '竹山县', '420300', '竹山', '3', '719', '442200', '中国,湖北省,十堰市,竹山县', '110.231', '32.2254', 'Zhushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420324', '竹溪县', '420300', '竹溪', '3', '719', '442300', '中国,湖北省,十堰市,竹溪县', '109.718', '32.319', 'Zhuxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420325', '房县', '420300', '房县', '3', '719', '442100', '中国,湖北省,十堰市,房县', '110.744', '32.0579', 'Fangxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420381', '丹江口市', '420300', '丹江口', '3', '719', '442700', '中国,湖北省,十堰市,丹江口市', '111.515', '32.5409', 'Danjiangkou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420500', '宜昌市', '420000', '宜昌', '2', '717', '443000', '中国,湖北省,宜昌市', '111.291', '30.7026', 'Yichang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420502', '西陵区', '420500', '西陵', '3', '717', '443000', '中国,湖北省,宜昌市,西陵区', '111.286', '30.7108', 'Xiling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420503', '伍家岗区', '420500', '伍家岗', '3', '717', '443001', '中国,湖北省,宜昌市,伍家岗区', '111.361', '30.6443', 'Wujiagang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420504', '点军区', '420500', '点军', '3', '717', '443006', '中国,湖北省,宜昌市,点军区', '111.268', '30.6934', 'Dianjun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420505', '猇亭区', '420500', '猇亭', '3', '717', '443007', '中国,湖北省,宜昌市,猇亭区', '111.441', '30.5266', 'Xiaoting', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420506', '夷陵区', '420500', '夷陵', '3', '717', '443100', '中国,湖北省,宜昌市,夷陵区', '111.326', '30.7688', 'Yiling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420525', '远安县', '420500', '远安', '3', '717', '444200', '中国,湖北省,宜昌市,远安县', '111.642', '31.0599', 'Yuanan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420526', '兴山县', '420500', '兴山', '3', '717', '443711', '中国,湖北省,宜昌市,兴山县', '110.75', '31.3469', 'Xingshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420527', '秭归县', '420500', '秭归', '3', '717', '443600', '中国,湖北省,宜昌市,秭归县', '110.982', '30.827', 'Zigui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420528', '长阳土家族自治县', '420500', '长阳', '3', '717', '443500', '中国,湖北省,宜昌市,长阳土家族自治县', '111.201', '30.4705', 'Changyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420529', '五峰土家族自治县', '420500', '五峰', '3', '717', '443413', '中国,湖北省,宜昌市,五峰土家族自治县', '110.675', '30.1986', 'Wufeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420581', '宜都市', '420500', '宜都', '3', '717', '443300', '中国,湖北省,宜昌市,宜都市', '111.45', '30.3781', 'Yidu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420582', '当阳市', '420500', '当阳', '3', '717', '444100', '中国,湖北省,宜昌市,当阳市', '111.789', '30.8208', 'Dangyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420583', '枝江市', '420500', '枝江', '3', '717', '443200', '中国,湖北省,宜昌市,枝江市', '111.769', '30.4261', 'Zhijiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420600', '襄阳市', '420000', '襄阳', '2', '710', '441021', '中国,湖北省,襄阳市', '112.144', '32.0424', 'Xiangyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420602', '襄城区', '420600', '襄城', '3', '710', '441021', '中国,湖北省,襄阳市,襄城区', '112.134', '32.0102', 'Xiangcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420606', '樊城区', '420600', '樊城', '3', '710', '441001', '中国,湖北省,襄阳市,樊城区', '112.135', '32.0448', 'Fancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420607', '襄州区', '420600', '襄州', '3', '710', '441100', '中国,湖北省,襄阳市,襄州区', '112.15', '32.0151', 'Xiangzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420624', '南漳县', '420600', '南漳', '3', '710', '441500', '中国,湖北省,襄阳市,南漳县', '111.846', '31.7765', 'Nanzhang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420625', '谷城县', '420600', '谷城', '3', '710', '441700', '中国,湖北省,襄阳市,谷城县', '111.653', '32.2638', 'Gucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420626', '保康县', '420600', '保康', '3', '710', '441600', '中国,湖北省,襄阳市,保康县', '111.261', '31.8787', 'Baokang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420682', '老河口市', '420600', '老河口', '3', '710', '441800', '中国,湖北省,襄阳市,老河口市', '111.671', '32.3848', 'Laohekou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420683', '枣阳市', '420600', '枣阳', '3', '710', '441200', '中国,湖北省,襄阳市,枣阳市', '112.774', '32.1314', 'Zaoyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420684', '宜城市', '420600', '宜城', '3', '710', '441400', '中国,湖北省,襄阳市,宜城市', '112.258', '31.7197', 'Yicheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420700', '鄂州市', '420000', '鄂州', '2', '711', '436000', '中国,湖北省,鄂州市', '114.891', '30.3965', 'Ezhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420702', '梁子湖区', '420700', '梁子湖', '3', '711', '436064', '中国,湖北省,鄂州市,梁子湖区', '114.685', '30.1', 'Liangzihu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420703', '华容区', '420700', '华容', '3', '711', '436030', '中国,湖北省,鄂州市,华容区', '114.736', '30.5333', 'Huarong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420704', '鄂城区', '420700', '鄂城', '3', '711', '436000', '中国,湖北省,鄂州市,鄂城区', '114.892', '30.4002', 'Echeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420800', '荆门市', '420000', '荆门', '2', '724', '448000', '中国,湖北省,荆门市', '112.204', '31.0354', 'Jingmen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420802', '东宝区', '420800', '东宝', '3', '724', '448004', '中国,湖北省,荆门市,东宝区', '112.201', '31.0519', 'Dongbao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420804', '掇刀区', '420800', '掇刀', '3', '724', '448124', '中国,湖北省,荆门市,掇刀区', '112.208', '30.9732', 'Duodao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420821', '京山县', '420800', '京山', '3', '724', '431800', '中国,湖北省,荆门市,京山县', '113.111', '31.0224', 'Jingshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420822', '沙洋县', '420800', '沙洋', '3', '724', '448200', '中国,湖北省,荆门市,沙洋县', '112.589', '30.7092', 'Shayang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420881', '钟祥市', '420800', '钟祥', '3', '724', '431900', '中国,湖北省,荆门市,钟祥市', '112.589', '31.1678', 'Zhongxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420900', '孝感市', '420000', '孝感', '2', '712', '432100', '中国,湖北省,孝感市', '113.927', '30.9264', 'Xiaogan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420902', '孝南区', '420900', '孝南', '3', '712', '432100', '中国,湖北省,孝感市,孝南区', '113.911', '30.9168', 'Xiaonan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420921', '孝昌县', '420900', '孝昌', '3', '712', '432900', '中国,湖北省,孝感市,孝昌县', '113.998', '31.258', 'Xiaochang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420922', '大悟县', '420900', '大悟', '3', '712', '432800', '中国,湖北省,孝感市,大悟县', '114.126', '31.5618', 'Dawu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420923', '云梦县', '420900', '云梦', '3', '712', '432500', '中国,湖北省,孝感市,云梦县', '113.753', '31.0209', 'Yunmeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420981', '应城市', '420900', '应城', '3', '712', '432400', '中国,湖北省,孝感市,应城市', '113.573', '30.9283', 'Yingcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420982', '安陆市', '420900', '安陆', '3', '712', '432600', '中国,湖北省,孝感市,安陆市', '113.686', '31.2569', 'Anlu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('420984', '汉川市', '420900', '汉川', '3', '712', '432300', '中国,湖北省,孝感市,汉川市', '113.839', '30.6612', 'Hanchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421000', '荆州市', '420000', '荆州', '2', '716', '434000', '中国,湖北省,荆州市', '112.238', '30.3269', 'Jingzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421002', '沙市区', '421000', '沙市', '3', '716', '434000', '中国,湖北省,荆州市,沙市区', '112.255', '30.3111', 'Shashi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421003', '荆州区', '421000', '荆州', '3', '716', '434020', '中国,湖北省,荆州市,荆州区', '112.19', '30.3526', 'Jingzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421022', '公安县', '421000', '公安', '3', '716', '434300', '中国,湖北省,荆州市,公安县', '112.232', '30.059', 'Gongan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421023', '监利县', '421000', '监利', '3', '716', '433300', '中国,湖北省,荆州市,监利县', '112.895', '29.8149', 'Jianli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421024', '江陵县', '421000', '江陵', '3', '716', '434101', '中国,湖北省,荆州市,江陵县', '112.425', '30.0417', 'Jiangling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421081', '石首市', '421000', '石首', '3', '716', '434400', '中国,湖北省,荆州市,石首市', '112.426', '29.7213', 'Shishou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421083', '洪湖市', '421000', '洪湖', '3', '716', '433200', '中国,湖北省,荆州市,洪湖市', '113.476', '29.827', 'Honghu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421087', '松滋市', '421000', '松滋', '3', '716', '434200', '中国,湖北省,荆州市,松滋市', '111.767', '30.1696', 'Songzi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421100', '黄冈市', '420000', '黄冈', '2', '713', '438000', '中国,湖北省,黄冈市', '114.879', '30.4477', 'Huanggang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421102', '黄州区', '421100', '黄州', '3', '713', '438000', '中国,湖北省,黄冈市,黄州区', '114.88', '30.4344', 'Huangzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421121', '团风县', '421100', '团风', '3', '713', '438800', '中国,湖北省,黄冈市,团风县', '114.872', '30.6436', 'Tuanfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421122', '红安县', '421100', '红安', '3', '713', '438401', '中国,湖北省,黄冈市,红安县', '114.622', '31.2867', 'Hongan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421123', '罗田县', '421100', '罗田', '3', '713', '438600', '中国,湖北省,黄冈市,罗田县', '115.4', '30.7826', 'Luotian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421124', '英山县', '421100', '英山', '3', '713', '438700', '中国,湖北省,黄冈市,英山县', '115.681', '30.7352', 'Yingshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421125', '浠水县', '421100', '浠水', '3', '713', '438200', '中国,湖北省,黄冈市,浠水县', '115.269', '30.4527', 'Xishui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421126', '蕲春县', '421100', '蕲春', '3', '713', '435300', '中国,湖北省,黄冈市,蕲春县', '115.436', '30.2261', 'Qichun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421127', '黄梅县', '421100', '黄梅', '3', '713', '435500', '中国,湖北省,黄冈市,黄梅县', '115.944', '30.0703', 'Huangmei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421181', '麻城市', '421100', '麻城', '3', '713', '438300', '中国,湖北省,黄冈市,麻城市', '115.01', '31.1723', 'Macheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421182', '武穴市', '421100', '武穴', '3', '713', '435400', '中国,湖北省,黄冈市,武穴市', '115.56', '29.8445', 'Wuxue', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421200', '咸宁市', '420000', '咸宁', '2', '715', '437000', '中国,湖北省,咸宁市', '114.329', '29.8328', 'Xianning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421202', '咸安区', '421200', '咸安', '3', '715', '437000', '中国,湖北省,咸宁市,咸安区', '114.299', '29.8529', 'Xianan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421221', '嘉鱼县', '421200', '嘉鱼', '3', '715', '437200', '中国,湖北省,咸宁市,嘉鱼县', '113.939', '29.9705', 'Jiayu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421222', '通城县', '421200', '通城', '3', '715', '437400', '中国,湖北省,咸宁市,通城县', '113.816', '29.2457', 'Tongcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421223', '崇阳县', '421200', '崇阳', '3', '715', '437500', '中国,湖北省,咸宁市,崇阳县', '114.04', '29.5556', 'Chongyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421224', '通山县', '421200', '通山', '3', '715', '437600', '中国,湖北省,咸宁市,通山县', '114.482', '29.6063', 'Tongshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421281', '赤壁市', '421200', '赤壁', '3', '715', '437300', '中国,湖北省,咸宁市,赤壁市', '113.9', '29.7245', 'Chibi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421300', '随州市', '420000', '随州', '2', '722', '441300', '中国,湖北省,随州市', '113.374', '31.7175', 'Suizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421303', '曾都区', '421300', '曾都', '3', '722', '441300', '中国,湖北省,随州市,曾都区', '113.371', '31.7161', 'Zengdu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421321', '随县', '421300', '随县', '3', '722', '441309', '中国,湖北省,随州市,随县', '113.827', '31.6179', 'Suixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('421381', '广水市', '421300', '广水', '3', '722', '432700', '中国,湖北省,随州市,广水市', '113.827', '31.6179', 'Guangshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('422800', '恩施土家族苗族自治州', '420000', '恩施', '2', '718', '445000', '中国,湖北省,恩施土家族苗族自治州', '109.487', '30.2831', 'Enshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('422801', '恩施市', '422800', '恩施', '3', '718', '445000', '中国,湖北省,恩施土家族苗族自治州,恩施市', '109.479', '30.295', 'Enshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('422802', '利川市', '422800', '利川', '3', '718', '445400', '中国,湖北省,恩施土家族苗族自治州,利川市', '108.936', '30.2912', 'Lichuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('422822', '建始县', '422800', '建始', '3', '718', '445300', '中国,湖北省,恩施土家族苗族自治州,建始县', '109.722', '30.6021', 'Jianshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('422823', '巴东县', '422800', '巴东', '3', '718', '444300', '中国,湖北省,恩施土家族苗族自治州,巴东县', '110.341', '31.0423', 'Badong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('422825', '宣恩县', '422800', '宣恩', '3', '718', '445500', '中国,湖北省,恩施土家族苗族自治州,宣恩县', '109.492', '29.9871', 'Xuanen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('422826', '咸丰县', '422800', '咸丰', '3', '718', '445600', '中国,湖北省,恩施土家族苗族自治州,咸丰县', '109.152', '29.6798', 'Xianfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('422827', '来凤县', '422800', '来凤', '3', '718', '445700', '中国,湖北省,恩施土家族苗族自治州,来凤县', '109.407', '29.4937', 'Laifeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('422828', '鹤峰县', '422800', '鹤峰', '3', '718', '445800', '中国,湖北省,恩施土家族苗族自治州,鹤峰县', '110.031', '29.8907', 'Hefeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('429004', '仙桃市', '420000', '仙桃', '2', '728', '433000', '中国,湖北省,仙桃市', '113.454', '30.365', 'Xiantao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('429005', '潜江市', '420000', '潜江', '2', '728', '433100', '中国,湖北省,潜江市', '112.897', '30.4212', 'Qianjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('429006', '天门市', '420000', '天门', '2', '728', '431700', '中国,湖北省,天门市', '113.166', '30.6531', 'Tianmen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('429021', '神农架林区', '420000', '神农架', '2', '719', '442400', '中国,湖北省,神农架林区', '110.672', '31.7444', 'Shennongjia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430000', '湖南省', '100000', '湖南', '1', '0', '0', '中国,湖南省', '112.982', '28.1941', 'Hunan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430100', '长沙市', '430000', '长沙', '2', '731', '410005', '中国,湖南省,长沙市', '112.982', '28.1941', 'Changsha', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430102', '芙蓉区', '430100', '芙蓉', '3', '731', '410011', '中国,湖南省,长沙市,芙蓉区', '113.032', '28.1844', 'Furong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430103', '天心区', '430100', '天心', '3', '731', '410004', '中国,湖南省,长沙市,天心区', '112.99', '28.1127', 'Tianxin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430104', '岳麓区', '430100', '岳麓', '3', '731', '410013', '中国,湖南省,长沙市,岳麓区', '112.931', '28.2351', 'Yuelu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430105', '开福区', '430100', '开福', '3', '731', '410008', '中国,湖南省,长沙市,开福区', '112.986', '28.2558', 'Kaifu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430111', '雨花区', '430100', '雨花', '3', '731', '410011', '中国,湖南省,长沙市,雨花区', '113.036', '28.1354', 'Yuhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430112', '望城区', '430100', '望城', '3', '731', '410200', '中国,湖南省,长沙市,望城区', '112.82', '28.3475', 'Wangcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430121', '长沙县', '430100', '长沙', '3', '731', '410100', '中国,湖南省,长沙市,长沙县', '113.081', '28.246', 'Changsha', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430124', '宁乡县', '430100', '宁乡', '3', '731', '410600', '中国,湖南省,长沙市,宁乡县', '112.557', '28.2536', 'Ningxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430181', '浏阳市', '430100', '浏阳', '3', '731', '410300', '中国,湖南省,长沙市,浏阳市', '113.643', '28.1637', 'Liuyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430200', '株洲市', '430000', '株洲', '2', '731', '412000', '中国,湖南省,株洲市', '113.152', '27.8358', 'Zhuzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430202', '荷塘区', '430200', '荷塘', '3', '731', '412000', '中国,湖南省,株洲市,荷塘区', '113.173', '27.8557', 'Hetang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430203', '芦淞区', '430200', '芦淞', '3', '731', '412000', '中国,湖南省,株洲市,芦淞区', '113.156', '27.7852', 'Lusong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430204', '石峰区', '430200', '石峰', '3', '731', '412005', '中国,湖南省,株洲市,石峰区', '113.118', '27.8755', 'Shifeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430211', '天元区', '430200', '天元', '3', '731', '412007', '中国,湖南省,株洲市,天元区', '113.123', '27.831', 'Tianyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430221', '株洲县', '430200', '株洲', '3', '731', '412100', '中国,湖南省,株洲市,株洲县', '113.144', '27.6983', 'Zhuzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430223', '攸县', '430200', '攸县', '3', '731', '412300', '中国,湖南省,株洲市,攸县', '113.344', '27.0035', 'Youxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430224', '茶陵县', '430200', '茶陵', '3', '731', '412400', '中国,湖南省,株洲市,茶陵县', '113.544', '26.7915', 'Chaling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430225', '炎陵县', '430200', '炎陵', '3', '731', '412500', '中国,湖南省,株洲市,炎陵县', '113.772', '26.4882', 'Yanling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430281', '醴陵市', '430200', '醴陵', '3', '731', '412200', '中国,湖南省,株洲市,醴陵市', '113.497', '27.6462', 'Liling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430300', '湘潭市', '430000', '湘潭', '2', '731', '411100', '中国,湖南省,湘潭市', '112.925', '27.8467', 'Xiangtan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430302', '雨湖区', '430300', '雨湖', '3', '731', '411100', '中国,湖南省,湘潭市,雨湖区', '112.904', '27.8686', 'Yuhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430304', '岳塘区', '430300', '岳塘', '3', '731', '411101', '中国,湖南省,湘潭市,岳塘区', '112.961', '27.8578', 'Yuetang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430321', '湘潭县', '430300', '湘潭', '3', '731', '411228', '中国,湖南省,湘潭市,湘潭县', '112.951', '27.7789', 'Xiangtan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430381', '湘乡市', '430300', '湘乡', '3', '731', '411400', '中国,湖南省,湘潭市,湘乡市', '112.535', '27.7354', 'Xiangxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430382', '韶山市', '430300', '韶山', '3', '731', '411300', '中国,湖南省,湘潭市,韶山市', '112.527', '27.915', 'Shaoshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430400', '衡阳市', '430000', '衡阳', '2', '734', '421001', '中国,湖南省,衡阳市', '112.608', '26.9004', 'Hengyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430405', '珠晖区', '430400', '珠晖', '3', '734', '421002', '中国,湖南省,衡阳市,珠晖区', '112.621', '26.8936', 'Zhuhui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430406', '雁峰区', '430400', '雁峰', '3', '734', '421001', '中国,湖南省,衡阳市,雁峰区', '112.617', '26.8887', 'Yanfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430407', '石鼓区', '430400', '石鼓', '3', '734', '421005', '中国,湖南省,衡阳市,石鼓区', '112.611', '26.9023', 'Shigu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430408', '蒸湘区', '430400', '蒸湘', '3', '734', '421001', '中国,湖南省,衡阳市,蒸湘区', '112.603', '26.8965', 'Zhengxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430412', '南岳区', '430400', '南岳', '3', '734', '421900', '中国,湖南省,衡阳市,南岳区', '112.738', '27.2326', 'Nanyue', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430421', '衡阳县', '430400', '衡阳', '3', '734', '421200', '中国,湖南省,衡阳市,衡阳县', '112.371', '26.9706', 'Hengyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430422', '衡南县', '430400', '衡南', '3', '734', '421131', '中国,湖南省,衡阳市,衡南县', '112.678', '26.7383', 'Hengnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430423', '衡山县', '430400', '衡山', '3', '734', '421300', '中国,湖南省,衡阳市,衡山县', '112.868', '27.2313', 'Hengshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430424', '衡东县', '430400', '衡东', '3', '734', '421400', '中国,湖南省,衡阳市,衡东县', '112.948', '27.0809', 'Hengdong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430426', '祁东县', '430400', '祁东', '3', '734', '421600', '中国,湖南省,衡阳市,祁东县', '112.09', '26.7996', 'Qidong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430481', '耒阳市', '430400', '耒阳', '3', '734', '421800', '中国,湖南省,衡阳市,耒阳市', '112.86', '26.4213', 'Leiyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430482', '常宁市', '430400', '常宁', '3', '734', '421500', '中国,湖南省,衡阳市,常宁市', '112.401', '26.4069', 'Changning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430500', '邵阳市', '430000', '邵阳', '2', '739', '422000', '中国,湖南省,邵阳市', '111.469', '27.2378', 'Shaoyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430502', '双清区', '430500', '双清', '3', '739', '422001', '中国,湖南省,邵阳市,双清区', '111.497', '27.2329', 'Shuangqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430503', '大祥区', '430500', '大祥', '3', '739', '422000', '中国,湖南省,邵阳市,大祥区', '111.454', '27.2333', 'Daxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430511', '北塔区', '430500', '北塔', '3', '739', '422007', '中国,湖南省,邵阳市,北塔区', '111.452', '27.2465', 'Beita', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430521', '邵东县', '430500', '邵东', '3', '739', '422800', '中国,湖南省,邵阳市,邵东县', '111.744', '27.2584', 'Shaodong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430522', '新邵县', '430500', '新邵', '3', '739', '422900', '中国,湖南省,邵阳市,新邵县', '111.461', '27.3217', 'Xinshao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430523', '邵阳县', '430500', '邵阳', '3', '739', '422100', '中国,湖南省,邵阳市,邵阳县', '111.275', '26.9914', 'Shaoyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430524', '隆回县', '430500', '隆回', '3', '739', '422200', '中国,湖南省,邵阳市,隆回县', '111.032', '27.1094', 'Longhui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430525', '洞口县', '430500', '洞口', '3', '739', '422300', '中国,湖南省,邵阳市,洞口县', '110.574', '27.0546', 'Dongkou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430527', '绥宁县', '430500', '绥宁', '3', '739', '422600', '中国,湖南省,邵阳市,绥宁县', '110.156', '26.5864', 'Suining', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430528', '新宁县', '430500', '新宁', '3', '739', '422700', '中国,湖南省,邵阳市,新宁县', '110.851', '26.4294', 'Xinning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430529', '城步苗族自治县', '430500', '城步', '3', '739', '422500', '中国,湖南省,邵阳市,城步苗族自治县', '110.322', '26.3905', 'Chengbu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430581', '武冈市', '430500', '武冈', '3', '739', '422400', '中国,湖南省,邵阳市,武冈市', '110.633', '26.7282', 'Wugang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430600', '岳阳市', '430000', '岳阳', '2', '730', '414000', '中国,湖南省,岳阳市', '113.133', '29.3703', 'Yueyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430602', '岳阳楼区', '430600', '岳阳楼', '3', '730', '414000', '中国,湖南省,岳阳市,岳阳楼区', '113.129', '29.3719', 'Yueyanglou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430603', '云溪区', '430600', '云溪', '3', '730', '414009', '中国,湖南省,岳阳市,云溪区', '113.277', '29.4736', 'Yunxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430611', '君山区', '430600', '君山', '3', '730', '414005', '中国,湖南省,岳阳市,君山区', '113.004', '29.4594', 'Junshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430621', '岳阳县', '430600', '岳阳', '3', '730', '414100', '中国,湖南省,岳阳市,岳阳县', '113.12', '29.1431', 'Yueyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430623', '华容县', '430600', '华容', '3', '730', '414200', '中国,湖南省,岳阳市,华容县', '112.541', '29.5302', 'Huarong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430624', '湘阴县', '430600', '湘阴', '3', '730', '414600', '中国,湖南省,岳阳市,湘阴县', '112.909', '28.6892', 'Xiangyin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430626', '平江县', '430600', '平江', '3', '730', '414500', '中国,湖南省,岳阳市,平江县', '113.581', '28.7066', 'Pingjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430681', '汨罗市', '430600', '汨罗', '3', '730', '414400', '中国,湖南省,岳阳市,汨罗市', '113.067', '28.8063', 'Miluo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430682', '临湘市', '430600', '临湘', '3', '730', '414300', '中国,湖南省,岳阳市,临湘市', '113.45', '29.477', 'Linxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430700', '常德市', '430000', '常德', '2', '736', '415000', '中国,湖南省,常德市', '111.691', '29.0402', 'Changde', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430702', '武陵区', '430700', '武陵', '3', '736', '415000', '中国,湖南省,常德市,武陵区', '111.698', '29.0288', 'Wuling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430703', '鼎城区', '430700', '鼎城', '3', '736', '415101', '中国,湖南省,常德市,鼎城区', '111.681', '29.0186', 'Dingcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430721', '安乡县', '430700', '安乡', '3', '736', '415600', '中国,湖南省,常德市,安乡县', '112.167', '29.4133', 'Anxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430722', '汉寿县', '430700', '汉寿', '3', '736', '415900', '中国,湖南省,常德市,汉寿县', '111.967', '28.903', 'Hanshou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430723', '澧县', '430700', '澧县', '3', '736', '415500', '中国,湖南省,常德市,澧县', '111.759', '29.6332', 'Lixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430724', '临澧县', '430700', '临澧', '3', '736', '415200', '中国,湖南省,常德市,临澧县', '111.652', '29.4416', 'Linli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430725', '桃源县', '430700', '桃源', '3', '736', '415700', '中国,湖南省,常德市,桃源县', '111.489', '28.9047', 'Taoyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430726', '石门县', '430700', '石门', '3', '736', '415300', '中国,湖南省,常德市,石门县', '111.38', '29.5842', 'Shimen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430781', '津市市', '430700', '津市', '3', '736', '415400', '中国,湖南省,常德市,津市市', '111.878', '29.6056', 'Jinshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430800', '张家界市', '430000', '张家界', '2', '744', '427000', '中国,湖南省,张家界市', '110.48', '29.1274', 'Zhangjiajie', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430802', '永定区', '430800', '永定', '3', '744', '427000', '中国,湖南省,张家界市,永定区', '110.475', '29.1339', 'Yongding', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430811', '武陵源区', '430800', '武陵源', '3', '744', '427400', '中国,湖南省,张家界市,武陵源区', '110.55', '29.3457', 'Wulingyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430821', '慈利县', '430800', '慈利', '3', '744', '427200', '中国,湖南省,张家界市,慈利县', '111.139', '29.4299', 'Cili', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430822', '桑植县', '430800', '桑植', '3', '744', '427100', '中国,湖南省,张家界市,桑植县', '110.163', '29.3981', 'Sangzhi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430900', '益阳市', '430000', '益阳', '2', '737', '413000', '中国,湖南省,益阳市', '112.355', '28.5701', 'Yiyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430902', '资阳区', '430900', '资阳', '3', '737', '413001', '中国,湖南省,益阳市,资阳区', '112.324', '28.591', 'Ziyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430903', '赫山区', '430900', '赫山', '3', '737', '413002', '中国,湖南省,益阳市,赫山区', '112.373', '28.5742', 'Heshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430921', '南县', '430900', '南县', '3', '737', '413200', '中国,湖南省,益阳市,南县', '112.396', '29.3616', 'Nanxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430922', '桃江县', '430900', '桃江', '3', '737', '413400', '中国,湖南省,益阳市,桃江县', '112.156', '28.5181', 'Taojiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430923', '安化县', '430900', '安化', '3', '737', '413500', '中国,湖南省,益阳市,安化县', '111.213', '28.3742', 'Anhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('430981', '沅江市', '430900', '沅江', '3', '737', '413100', '中国,湖南省,益阳市,沅江市', '112.354', '28.844', 'Yuanjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431000', '郴州市', '430000', '郴州', '2', '735', '423000', '中国,湖南省,郴州市', '113.032', '25.7936', 'Chenzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431002', '北湖区', '431000', '北湖', '3', '735', '423000', '中国,湖南省,郴州市,北湖区', '113.011', '25.784', 'Beihu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431003', '苏仙区', '431000', '苏仙', '3', '735', '423000', '中国,湖南省,郴州市,苏仙区', '113.042', '25.8004', 'Suxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431021', '桂阳县', '431000', '桂阳', '3', '735', '424400', '中国,湖南省,郴州市,桂阳县', '112.734', '25.7541', 'Guiyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431022', '宜章县', '431000', '宜章', '3', '735', '424200', '中国,湖南省,郴州市,宜章县', '112.951', '25.3993', 'Yizhang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431023', '永兴县', '431000', '永兴', '3', '735', '423300', '中国,湖南省,郴州市,永兴县', '113.112', '26.1265', 'Yongxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431024', '嘉禾县', '431000', '嘉禾', '3', '735', '424500', '中国,湖南省,郴州市,嘉禾县', '112.369', '25.5879', 'Jiahe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431025', '临武县', '431000', '临武', '3', '735', '424300', '中国,湖南省,郴州市,临武县', '112.564', '25.276', 'Linwu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431026', '汝城县', '431000', '汝城', '3', '735', '424100', '中国,湖南省,郴州市,汝城县', '113.686', '25.552', 'Rucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431027', '桂东县', '431000', '桂东', '3', '735', '423500', '中国,湖南省,郴州市,桂东县', '113.947', '26.0799', 'Guidong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431028', '安仁县', '431000', '安仁', '3', '735', '423600', '中国,湖南省,郴州市,安仁县', '113.269', '26.7093', 'Anren', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431081', '资兴市', '431000', '资兴', '3', '735', '423400', '中国,湖南省,郴州市,资兴市', '113.237', '25.9767', 'Zixing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431100', '永州市', '430000', '永州', '2', '746', '425000', '中国,湖南省,永州市', '111.608', '26.4345', 'Yongzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431102', '零陵区', '431100', '零陵', '3', '746', '425100', '中国,湖南省,永州市,零陵区', '111.621', '26.2211', 'Lingling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431103', '冷水滩区', '431100', '冷水滩', '3', '746', '425100', '中国,湖南省,永州市,冷水滩区', '111.592', '26.4611', 'Lengshuitan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431121', '祁阳县', '431100', '祁阳', '3', '746', '426100', '中国,湖南省,永州市,祁阳县', '111.84', '26.5801', 'Qiyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431122', '东安县', '431100', '东安', '3', '746', '425900', '中国,湖南省,永州市,东安县', '111.316', '26.392', 'Dongan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431123', '双牌县', '431100', '双牌', '3', '746', '425200', '中国,湖南省,永州市,双牌县', '111.659', '25.9599', 'Shuangpai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431124', '道县', '431100', '道县', '3', '746', '425300', '中国,湖南省,永州市,道县', '111.602', '25.5277', 'Daoxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431125', '江永县', '431100', '江永', '3', '746', '425400', '中国,湖南省,永州市,江永县', '111.341', '25.2723', 'Jiangyong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431126', '宁远县', '431100', '宁远', '3', '746', '425600', '中国,湖南省,永州市,宁远县', '111.946', '25.5691', 'Ningyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431127', '蓝山县', '431100', '蓝山', '3', '746', '425800', '中国,湖南省,永州市,蓝山县', '112.194', '25.3679', 'Lanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431128', '新田县', '431100', '新田', '3', '746', '425700', '中国,湖南省,永州市,新田县', '112.221', '25.9095', 'Xintian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431129', '江华瑶族自治县', '431100', '江华', '3', '746', '425500', '中国,湖南省,永州市,江华瑶族自治县', '111.588', '25.1845', 'Jianghua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431200', '怀化市', '430000', '怀化', '2', '745', '418000', '中国,湖南省,怀化市', '109.978', '27.5501', 'Huaihua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431202', '鹤城区', '431200', '鹤城', '3', '745', '418000', '中国,湖南省,怀化市,鹤城区', '109.965', '27.5494', 'Hecheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431221', '中方县', '431200', '中方', '3', '745', '418005', '中国,湖南省,怀化市,中方县', '109.945', '27.4399', 'Zhongfang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431222', '沅陵县', '431200', '沅陵', '3', '745', '419600', '中国,湖南省,怀化市,沅陵县', '110.396', '28.4555', 'Yuanling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431223', '辰溪县', '431200', '辰溪', '3', '745', '419500', '中国,湖南省,怀化市,辰溪县', '110.189', '28.0041', 'Chenxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431224', '溆浦县', '431200', '溆浦', '3', '745', '419300', '中国,湖南省,怀化市,溆浦县', '110.594', '27.9084', 'Xupu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431225', '会同县', '431200', '会同', '3', '745', '418300', '中国,湖南省,怀化市,会同县', '109.736', '26.8872', 'Huitong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431226', '麻阳苗族自治县', '431200', '麻阳', '3', '745', '419400', '中国,湖南省,怀化市,麻阳苗族自治县', '109.802', '27.866', 'Mayang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431227', '新晃侗族自治县', '431200', '新晃', '3', '745', '419200', '中国,湖南省,怀化市,新晃侗族自治县', '109.172', '27.3594', 'Xinhuang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431228', '芷江侗族自治县', '431200', '芷江', '3', '745', '419100', '中国,湖南省,怀化市,芷江侗族自治县', '109.685', '27.443', 'Zhijiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431229', '靖州苗族侗族自治县', '431200', '靖州', '3', '745', '418400', '中国,湖南省,怀化市,靖州苗族侗族自治县', '109.698', '26.5765', 'Jingzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431230', '通道侗族自治县', '431200', '通道', '3', '745', '418500', '中国,湖南省,怀化市,通道侗族自治县', '109.785', '26.1571', 'Tongdao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431281', '洪江市', '431200', '洪江', '3', '745', '418100', '中国,湖南省,怀化市,洪江市', '109.837', '27.2092', 'Hongjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431300', '娄底市', '430000', '娄底', '2', '738', '417000', '中国,湖南省,娄底市', '112.008', '27.7281', 'Loudi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431302', '娄星区', '431300', '娄星', '3', '738', '417000', '中国,湖南省,娄底市,娄星区', '112.002', '27.7299', 'Louxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431321', '双峰县', '431300', '双峰', '3', '738', '417700', '中国,湖南省,娄底市,双峰县', '112.199', '27.4542', 'Shuangfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431322', '新化县', '431300', '新化', '3', '738', '417600', '中国,湖南省,娄底市,新化县', '111.327', '27.7266', 'Xinhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431381', '冷水江市', '431300', '冷水江', '3', '738', '417500', '中国,湖南省,娄底市,冷水江市', '111.436', '27.6815', 'Lengshuijiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('431382', '涟源市', '431300', '涟源', '3', '738', '417100', '中国,湖南省,娄底市,涟源市', '111.672', '27.6883', 'Lianyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('433100', '湘西土家族苗族自治州', '430000', '湘西', '2', '743', '416000', '中国,湖南省,湘西土家族苗族自治州', '109.74', '28.3143', 'Xiangxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('433101', '吉首市', '433100', '吉首', '3', '743', '416000', '中国,湖南省,湘西土家族苗族自治州,吉首市', '109.698', '28.2625', 'Jishou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('433122', '泸溪县', '433100', '泸溪', '3', '743', '416100', '中国,湖南省,湘西土家族苗族自治州,泸溪县', '110.217', '28.2205', 'Luxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('433123', '凤凰县', '433100', '凤凰', '3', '743', '416200', '中国,湖南省,湘西土家族苗族自治州,凤凰县', '109.602', '27.9482', 'Fenghuang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('433124', '花垣县', '433100', '花垣', '3', '743', '416400', '中国,湖南省,湘西土家族苗族自治州,花垣县', '109.482', '28.5721', 'Huayuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('433125', '保靖县', '433100', '保靖', '3', '743', '416500', '中国,湖南省,湘西土家族苗族自治州,保靖县', '109.66', '28.7', 'Baojing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('433126', '古丈县', '433100', '古丈', '3', '743', '416300', '中国,湖南省,湘西土家族苗族自治州,古丈县', '109.948', '28.6194', 'Guzhang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('433127', '永顺县', '433100', '永顺', '3', '743', '416700', '中国,湖南省,湘西土家族苗族自治州,永顺县', '109.853', '29.001', 'Yongshun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('433130', '龙山县', '433100', '龙山', '3', '743', '416800', '中国,湖南省,湘西土家族苗族自治州,龙山县', '109.443', '29.4569', 'Longshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440000', '广东省', '100000', '广东', '1', '0', '0', '中国,广东省', '113.281', '23.1252', 'Guangdong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440100', '广州市', '440000', '广州', '2', '20', '510032', '中国,广东省,广州市', '113.281', '23.1252', 'Guangzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440103', '荔湾区', '440100', '荔湾', '3', '20', '510170', '中国,广东省,广州市,荔湾区', '113.244', '23.1259', 'Liwan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440104', '越秀区', '440100', '越秀', '3', '20', '510030', '中国,广东省,广州市,越秀区', '113.267', '23.129', 'Yuexiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440105', '海珠区', '440100', '海珠', '3', '20', '510300', '中国,广东省,广州市,海珠区', '113.262', '23.1038', 'Haizhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440106', '天河区', '440100', '天河', '3', '20', '510665', '中国,广东省,广州市,天河区', '113.361', '23.1247', 'Tianhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440111', '白云区', '440100', '白云', '3', '20', '510405', '中国,广东省,广州市,白云区', '113.273', '23.1579', 'Baiyun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440112', '黄埔区', '440100', '黄埔', '3', '20', '510700', '中国,广东省,广州市,黄埔区', '113.459', '23.1064', 'Huangpu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440113', '番禺区', '440100', '番禺', '3', '20', '511400', '中国,广东省,广州市,番禺区', '113.384', '22.936', 'Panyu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440114', '花都区', '440100', '花都', '3', '20', '510800', '中国,广东省,广州市,花都区', '113.22', '23.4036', 'Huadu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440115', '南沙区', '440100', '南沙', '3', '20', '511458', '中国,广东省,广州市,南沙区', '113.608', '22.7714', 'Nansha', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440117', '从化区', '440100', '从化', '3', '20', '510900', '中国,广东省,广州市,从化区', '113.587', '23.5453', 'Conghua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440118', '增城区', '440100', '增城', '3', '20', '511300', '中国,广东省,广州市,增城区', '113.83', '23.2905', 'Zengcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440200', '韶关市', '440000', '韶关', '2', '751', '512002', '中国,广东省,韶关市', '113.592', '24.8013', 'Shaoguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440203', '武江区', '440200', '武江', '3', '751', '512026', '中国,广东省,韶关市,武江区', '113.588', '24.7926', 'Wujiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440204', '浈江区', '440200', '浈江', '3', '751', '512023', '中国,广东省,韶关市,浈江区', '113.611', '24.8044', 'Zhenjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440205', '曲江区', '440200', '曲江', '3', '751', '512101', '中国,广东省,韶关市,曲江区', '113.602', '24.6791', 'Qujiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440222', '始兴县', '440200', '始兴', '3', '751', '512500', '中国,广东省,韶关市,始兴县', '114.068', '24.9476', 'Shixing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440224', '仁化县', '440200', '仁化', '3', '751', '512300', '中国,广东省,韶关市,仁化县', '113.747', '25.0874', 'Renhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440229', '翁源县', '440200', '翁源', '3', '751', '512600', '中国,广东省,韶关市,翁源县', '114.134', '24.3495', 'Wengyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440232', '乳源瑶族自治县', '440200', '乳源', '3', '751', '512700', '中国,广东省,韶关市,乳源瑶族自治县', '113.277', '24.778', 'Ruyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440233', '新丰县', '440200', '新丰', '3', '751', '511100', '中国,广东省,韶关市,新丰县', '114.208', '24.0592', 'Xinfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440281', '乐昌市', '440200', '乐昌', '3', '751', '512200', '中国,广东省,韶关市,乐昌市', '113.357', '25.128', 'Lechang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440282', '南雄市', '440200', '南雄', '3', '751', '512400', '中国,广东省,韶关市,南雄市', '114.31', '25.1171', 'Nanxiong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440300', '深圳市', '440000', '深圳', '2', '755', '518035', '中国,广东省,深圳市', '114.086', '22.547', 'Shenzhen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440303', '罗湖区', '440300', '罗湖', '3', '755', '518021', '中国,广东省,深圳市,罗湖区', '114.131', '22.5484', 'Luohu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440304', '福田区', '440300', '福田', '3', '755', '518048', '中国,广东省,深圳市,福田区', '114.056', '22.5224', 'Futian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440305', '南山区', '440300', '南山', '3', '755', '518051', '中国,广东省,深圳市,南山区', '113.93', '22.5329', 'Nanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440306', '宝安区', '440300', '宝安', '3', '755', '518101', '中国,广东省,深圳市,宝安区', '113.883', '22.5537', 'Baoan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440307', '龙岗区', '440300', '龙岗', '3', '755', '518172', '中国,广东省,深圳市,龙岗区', '114.248', '22.7199', 'Longgang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440308', '盐田区', '440300', '盐田', '3', '755', '518081', '中国,广东省,深圳市,盐田区', '114.237', '22.5578', 'Yantian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440309', '光明新区', '440300', '光明新区', '3', '755', '518100', '中国,广东省,深圳市,光明新区', '113.896', '22.7773', 'Guangmingxinqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440310', '坪山新区', '440300', '坪山新区', '3', '755', '518000', '中国,广东省,深圳市,坪山新区', '114.346', '22.6905', 'Pingshanxinqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440311', '大鹏新区', '440300', '大鹏新区', '3', '755', '518000', '中国,广东省,深圳市,大鹏新区', '114.48', '22.5879', 'Dapengxinqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440312', '龙华新区', '440300', '龙华新区', '3', '755', '518100', '中国,广东省,深圳市,龙华新区', '114.037', '22.687', 'Longhuaxinqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440400', '珠海市', '440000', '珠海', '2', '756', '519000', '中国,广东省,珠海市', '113.553', '22.2559', 'Zhuhai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440402', '香洲区', '440400', '香洲', '3', '756', '519000', '中国,广东省,珠海市,香洲区', '113.544', '22.2665', 'Xiangzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440403', '斗门区', '440400', '斗门', '3', '756', '519110', '中国,广东省,珠海市,斗门区', '113.296', '22.209', 'Doumen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440404', '金湾区', '440400', '金湾', '3', '756', '519040', '中国,广东省,珠海市,金湾区', '113.364', '22.1469', 'Jinwan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440500', '汕头市', '440000', '汕头', '2', '754', '515041', '中国,广东省,汕头市', '116.708', '23.371', 'Shantou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440507', '龙湖区', '440500', '龙湖', '3', '754', '515041', '中国,广东省,汕头市,龙湖区', '116.716', '23.3717', 'Longhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440511', '金平区', '440500', '金平', '3', '754', '515041', '中国,广东省,汕头市,金平区', '116.704', '23.3664', 'Jinping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440512', '濠江区', '440500', '濠江', '3', '754', '515071', '中国,广东省,汕头市,濠江区', '116.727', '23.2859', 'Haojiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440513', '潮阳区', '440500', '潮阳', '3', '754', '515100', '中国,广东省,汕头市,潮阳区', '116.602', '23.2649', 'Chaoyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440514', '潮南区', '440500', '潮南', '3', '754', '515144', '中国,广东省,汕头市,潮南区', '116.432', '23.25', 'Chaonan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440515', '澄海区', '440500', '澄海', '3', '754', '515800', '中国,广东省,汕头市,澄海区', '116.756', '23.4673', 'Chenghai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440523', '南澳县', '440500', '南澳', '3', '754', '515900', '中国,广东省,汕头市,南澳县', '117.019', '23.4223', 'Nanao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440600', '佛山市', '440000', '佛山', '2', '757', '528000', '中国,广东省,佛山市', '113.123', '23.0288', 'Foshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440604', '禅城区', '440600', '禅城', '3', '757', '528000', '中国,广东省,佛山市,禅城区', '113.123', '23.0084', 'Chancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440605', '南海区', '440600', '南海', '3', '757', '528251', '中国,广东省,佛山市,南海区', '113.143', '23.0288', 'Nanhai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440606', '顺德区', '440600', '顺德', '3', '757', '528300', '中国,广东省,佛山市,顺德区', '113.294', '22.8045', 'Shunde', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440607', '三水区', '440600', '三水', '3', '757', '528133', '中国,广东省,佛山市,三水区', '112.897', '23.1556', 'Sanshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440608', '高明区', '440600', '高明', '3', '757', '528500', '中国,广东省,佛山市,高明区', '112.893', '22.9002', 'Gaoming', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440700', '江门市', '440000', '江门', '2', '750', '529000', '中国,广东省,江门市', '113.095', '22.5904', 'Jiangmen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440703', '蓬江区', '440700', '蓬江', '3', '750', '529000', '中国,广东省,江门市,蓬江区', '113.078', '22.5951', 'Pengjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440704', '江海区', '440700', '江海', '3', '750', '529040', '中国,广东省,江门市,江海区', '113.111', '22.5602', 'Jianghai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440705', '新会区', '440700', '新会', '3', '750', '529100', '中国,广东省,江门市,新会区', '113.032', '22.4588', 'Xinhui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440781', '台山市', '440700', '台山', '3', '750', '529200', '中国,广东省,江门市,台山市', '112.794', '22.2515', 'Taishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440783', '开平市', '440700', '开平', '3', '750', '529337', '中国,广东省,江门市,开平市', '112.698', '22.3762', 'Kaiping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440784', '鹤山市', '440700', '鹤山', '3', '750', '529700', '中国,广东省,江门市,鹤山市', '112.964', '22.7652', 'Heshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440785', '恩平市', '440700', '恩平', '3', '750', '529400', '中国,广东省,江门市,恩平市', '112.305', '22.1829', 'Enping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440800', '湛江市', '440000', '湛江', '2', '759', '524047', '中国,广东省,湛江市', '110.406', '21.1953', 'Zhanjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440802', '赤坎区', '440800', '赤坎', '3', '759', '524033', '中国,广东省,湛江市,赤坎区', '110.366', '21.2661', 'Chikan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440803', '霞山区', '440800', '霞山', '3', '759', '524011', '中国,广东省,湛江市,霞山区', '110.398', '21.1918', 'Xiashan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440804', '坡头区', '440800', '坡头', '3', '759', '524057', '中国,广东省,湛江市,坡头区', '110.455', '21.2447', 'Potou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440811', '麻章区', '440800', '麻章', '3', '759', '524094', '中国,广东省,湛江市,麻章区', '110.334', '21.2633', 'Mazhang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440823', '遂溪县', '440800', '遂溪', '3', '759', '524300', '中国,广东省,湛江市,遂溪县', '110.25', '21.3772', 'Suixi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440825', '徐闻县', '440800', '徐闻', '3', '759', '524100', '中国,广东省,湛江市,徐闻县', '110.174', '20.3281', 'Xuwen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440881', '廉江市', '440800', '廉江', '3', '759', '524400', '中国,广东省,湛江市,廉江市', '110.284', '21.6092', 'Lianjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440882', '雷州市', '440800', '雷州', '3', '759', '524200', '中国,广东省,湛江市,雷州市', '110.101', '20.9143', 'Leizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440883', '吴川市', '440800', '吴川', '3', '759', '524500', '中国,广东省,湛江市,吴川市', '110.777', '21.4458', 'Wuchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440900', '茂名市', '440000', '茂名', '2', '668', '525000', '中国,广东省,茂名市', '110.919', '21.6598', 'Maoming', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440902', '茂南区', '440900', '茂南', '3', '668', '525000', '中国,广东省,茂名市,茂南区', '110.919', '21.641', 'Maonan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440904', '电白区', '440900', '电白', '3', '668', '525400', '中国,广东省,茂名市,电白区', '111.007', '21.5072', 'Dianbai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440981', '高州市', '440900', '高州', '3', '668', '525200', '中国,广东省,茂名市,高州市', '110.855', '21.9206', 'Gaozhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440982', '化州市', '440900', '化州', '3', '668', '525100', '中国,广东省,茂名市,化州市', '110.639', '21.6639', 'Huazhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('440983', '信宜市', '440900', '信宜', '3', '668', '525300', '中国,广东省,茂名市,信宜市', '110.946', '22.3535', 'Xinyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441200', '肇庆市', '440000', '肇庆', '2', '758', '526040', '中国,广东省,肇庆市', '112.473', '23.0515', 'Zhaoqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441202', '端州区', '441200', '端州', '3', '758', '526060', '中国,广东省,肇庆市,端州区', '112.485', '23.0519', 'Duanzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441203', '鼎湖区', '441200', '鼎湖', '3', '758', '526070', '中国,广东省,肇庆市,鼎湖区', '112.566', '23.1585', 'Dinghu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441223', '广宁县', '441200', '广宁', '3', '758', '526300', '中国,广东省,肇庆市,广宁县', '112.441', '23.6346', 'Guangning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441224', '怀集县', '441200', '怀集', '3', '758', '526400', '中国,广东省,肇庆市,怀集县', '112.184', '23.9092', 'Huaiji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441225', '封开县', '441200', '封开', '3', '758', '526500', '中国,广东省,肇庆市,封开县', '111.503', '23.4357', 'Fengkai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441226', '德庆县', '441200', '德庆', '3', '758', '526600', '中国,广东省,肇庆市,德庆县', '111.786', '23.1437', 'Deqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441283', '高要市', '441200', '高要', '3', '758', '526100', '中国,广东省,肇庆市,高要市', '112.458', '23.0258', 'Gaoyao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441284', '四会市', '441200', '四会', '3', '758', '526200', '中国,广东省,肇庆市,四会市', '112.734', '23.3269', 'Sihui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441300', '惠州市', '440000', '惠州', '2', '752', '516000', '中国,广东省,惠州市', '114.413', '23.0794', 'Huizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441302', '惠城区', '441300', '惠城', '3', '752', '516008', '中国,广东省,惠州市,惠城区', '114.383', '23.0838', 'Huicheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441303', '惠阳区', '441300', '惠阳', '3', '752', '516211', '中国,广东省,惠州市,惠阳区', '114.456', '22.7885', 'Huiyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441322', '博罗县', '441300', '博罗', '3', '752', '516100', '中国,广东省,惠州市,博罗县', '114.29', '23.1731', 'Boluo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441323', '惠东县', '441300', '惠东', '3', '752', '516300', '中国,广东省,惠州市,惠东县', '114.72', '22.9848', 'Huidong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441324', '龙门县', '441300', '龙门', '3', '752', '516800', '中国,广东省,惠州市,龙门县', '114.255', '23.7276', 'Longmen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441400', '梅州市', '440000', '梅州', '2', '753', '514021', '中国,广东省,梅州市', '116.118', '24.2991', 'Meizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441402', '梅江区', '441400', '梅江', '3', '753', '514000', '中国,广东省,梅州市,梅江区', '116.117', '24.3106', 'Meijiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441403', '梅县区', '441400', '梅县', '3', '753', '514787', '中国,广东省,梅州市,梅县区', '116.098', '24.2867', 'Meixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441422', '大埔县', '441400', '大埔', '3', '753', '514200', '中国,广东省,梅州市,大埔县', '116.697', '24.3533', 'Dabu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441423', '丰顺县', '441400', '丰顺', '3', '753', '514300', '中国,广东省,梅州市,丰顺县', '116.182', '23.7409', 'Fengshun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441424', '五华县', '441400', '五华', '3', '753', '514400', '中国,广东省,梅州市,五华县', '115.779', '23.9242', 'Wuhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441426', '平远县', '441400', '平远', '3', '753', '514600', '中国,广东省,梅州市,平远县', '115.896', '24.5712', 'Pingyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441427', '蕉岭县', '441400', '蕉岭', '3', '753', '514100', '中国,广东省,梅州市,蕉岭县', '116.171', '24.6573', 'Jiaoling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441481', '兴宁市', '441400', '兴宁', '3', '753', '514500', '中国,广东省,梅州市,兴宁市', '115.731', '24.14', 'Xingning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441500', '汕尾市', '440000', '汕尾', '2', '660', '516600', '中国,广东省,汕尾市', '115.364', '22.7745', 'Shanwei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441502', '城区', '441500', '城区', '3', '660', '516600', '中国,广东省,汕尾市,城区', '115.365', '22.7789', 'Chengqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441521', '海丰县', '441500', '海丰', '3', '660', '516400', '中国,广东省,汕尾市,海丰县', '115.323', '22.9665', 'Haifeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441523', '陆河县', '441500', '陆河', '3', '660', '516700', '中国,广东省,汕尾市,陆河县', '115.656', '23.3036', 'Luhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441581', '陆丰市', '441500', '陆丰', '3', '660', '516500', '中国,广东省,汕尾市,陆丰市', '115.648', '22.9433', 'Lufeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441600', '河源市', '440000', '河源', '2', '762', '517000', '中国,广东省,河源市', '114.698', '23.7463', 'Heyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441602', '源城区', '441600', '源城', '3', '762', '517000', '中国,广东省,河源市,源城区', '114.702', '23.7341', 'Yuancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441621', '紫金县', '441600', '紫金', '3', '762', '517400', '中国,广东省,河源市,紫金县', '115.184', '23.6387', 'Zijin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441622', '龙川县', '441600', '龙川', '3', '762', '517300', '中国,广东省,河源市,龙川县', '115.26', '24.1014', 'Longchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441623', '连平县', '441600', '连平', '3', '762', '517100', '中国,广东省,河源市,连平县', '114.49', '24.3716', 'Lianping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441624', '和平县', '441600', '和平', '3', '762', '517200', '中国,广东省,河源市,和平县', '114.938', '24.4432', 'Heping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441625', '东源县', '441600', '东源', '3', '762', '517583', '中国,广东省,河源市,东源县', '114.746', '23.7883', 'Dongyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441700', '阳江市', '440000', '阳江', '2', '662', '529500', '中国,广东省,阳江市', '111.975', '21.8592', 'Yangjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441702', '江城区', '441700', '江城', '3', '662', '529500', '中国,广东省,阳江市,江城区', '111.955', '21.8619', 'Jiangcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441704', '阳东区', '441700', '阳东', '3', '662', '529900', '中国,广东省,阳江市,阳东区', '112.015', '21.874', 'Yangdong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441721', '阳西县', '441700', '阳西', '3', '662', '529800', '中国,广东省,阳江市,阳西县', '111.618', '21.7523', 'Yangxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441781', '阳春市', '441700', '阳春', '3', '662', '529600', '中国,广东省,阳江市,阳春市', '111.789', '22.1723', 'Yangchun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441800', '清远市', '440000', '清远', '2', '763', '511500', '中国,广东省,清远市', '113.037', '23.7042', 'Qingyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441802', '清城区', '441800', '清城', '3', '763', '511515', '中国,广东省,清远市,清城区', '113.063', '23.6978', 'Qingcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441803', '清新区', '441800', '清新', '3', '763', '511810', '中国,广东省,清远市,清新区', '113.015', '23.7369', 'Qingxin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441821', '佛冈县', '441800', '佛冈', '3', '763', '511600', '中国,广东省,清远市,佛冈县', '113.533', '23.8723', 'Fogang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441823', '阳山县', '441800', '阳山', '3', '763', '513100', '中国,广东省,清远市,阳山县', '112.641', '24.4652', 'Yangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441825', '连山壮族瑶族自治县', '441800', '连山', '3', '763', '513200', '中国,广东省,清远市,连山壮族瑶族自治县', '112.08', '24.5681', 'Lianshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441826', '连南瑶族自治县', '441800', '连南', '3', '763', '513300', '中国,广东省,清远市,连南瑶族自治县', '112.288', '24.7173', 'Liannan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441881', '英德市', '441800', '英德', '3', '763', '513000', '中国,广东省,清远市,英德市', '113.415', '24.1857', 'Yingde', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441882', '连州市', '441800', '连州', '3', '763', '513400', '中国,广东省,清远市,连州市', '112.382', '24.7791', 'Lianzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441900', '东莞市', '440000', '东莞', '2', '769', '523888', '中国,广东省,东莞市', '113.76', '23.0489', 'Dongguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441901', '莞城区', '441900', '莞城', '3', '769', '523128', '中国,广东省,东莞市,莞城区', '113.751', '23.0534', 'Guancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441902', '南城区', '441900', '南城', '3', '769', '523617', '中国,广东省,东莞市,南城区', '113.752', '23.0202', 'Nancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441904', '万江区', '441900', '万江', '3', '769', '523039', '中国,广东省,东莞市,万江区', '113.739', '23.0438', 'Wanjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441905', '石碣镇', '441900', '石碣', '3', '769', '523290', '中国,广东省,东莞市,石碣镇', '113.802', '23.099', 'Shijie', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441906', '石龙镇', '441900', '石龙', '3', '769', '523326', '中国,广东省,东莞市,石龙镇', '113.876', '23.1074', 'Shilong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441907', '茶山镇', '441900', '茶山', '3', '769', '523380', '中国,广东省,东莞市,茶山镇', '113.884', '23.0624', 'Chashan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441908', '石排镇', '441900', '石排', '3', '769', '523346', '中国,广东省,东莞市,石排镇', '113.92', '23.0863', 'Shipai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441909', '企石镇', '441900', '企石', '3', '769', '523507', '中国,广东省,东莞市,企石镇', '114.013', '23.066', 'Qishi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441910', '横沥镇', '441900', '横沥', '3', '769', '523471', '中国,广东省,东莞市,横沥镇', '113.957', '23.0257', 'Hengli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441911', '桥头镇', '441900', '桥头', '3', '769', '523520', '中国,广东省,东莞市,桥头镇', '114.014', '22.9397', 'Qiaotou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441912', '谢岗镇', '441900', '谢岗', '3', '769', '523592', '中国,广东省,东莞市,谢岗镇', '114.141', '22.9597', 'Xiegang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441913', '东坑镇', '441900', '东坑', '3', '769', '523451', '中国,广东省,东莞市,东坑镇', '113.94', '22.9928', 'Dongkeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441914', '常平镇', '441900', '常平', '3', '769', '523560', '中国,广东省,东莞市,常平镇', '114.03', '23.0161', 'Changping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441915', '寮步镇', '441900', '寮步', '3', '769', '523411', '中国,广东省,东莞市,寮步镇', '113.885', '22.9917', 'Liaobu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441916', '大朗镇', '441900', '大朗', '3', '769', '523770', '中国,广东省,东莞市,大朗镇', '113.927', '22.9657', 'Dalang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441917', '麻涌镇', '441900', '麻涌', '3', '769', '523143', '中国,广东省,东莞市,麻涌镇', '113.546', '23.0453', 'Machong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441918', '中堂镇', '441900', '中堂', '3', '769', '523233', '中国,广东省,东莞市,中堂镇', '113.654', '23.0902', 'Zhongtang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441919', '高埗镇', '441900', '高埗', '3', '769', '523282', '中国,广东省,东莞市,高埗镇', '113.736', '23.0684', 'Gaobu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441920', '樟木头镇', '441900', '樟木头', '3', '769', '523619', '中国,广东省,东莞市,樟木头镇', '114.066', '22.9567', 'Zhangmutou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441921', '大岭山镇', '441900', '大岭山', '3', '769', '523835', '中国,广东省,东莞市,大岭山镇', '113.783', '22.8854', 'Dalingshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441922', '望牛墩镇', '441900', '望牛墩', '3', '769', '523203', '中国,广东省,东莞市,望牛墩镇', '113.659', '23.055', 'Wangniudun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441923', '黄江镇', '441900', '黄江', '3', '769', '523755', '中国,广东省,东莞市,黄江镇', '113.993', '22.8775', 'Huangjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441924', '洪梅镇', '441900', '洪梅', '3', '769', '523163', '中国,广东省,东莞市,洪梅镇', '113.613', '22.9927', 'Hongmei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441925', '清溪镇', '441900', '清溪', '3', '769', '523660', '中国,广东省,东莞市,清溪镇', '114.156', '22.8445', 'Qingxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441926', '沙田镇', '441900', '沙田', '3', '769', '523988', '中国,广东省,东莞市,沙田镇', '113.76', '23.0489', 'Shatian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441927', '道滘镇', '441900', '道滘', '3', '769', '523171', '中国,广东省,东莞市,道滘镇', '113.76', '23.0489', 'Daojiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441928', '塘厦镇', '441900', '塘厦', '3', '769', '523713', '中国,广东省,东莞市,塘厦镇', '114.108', '22.8229', 'Tangxia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441929', '虎门镇', '441900', '虎门', '3', '769', '523932', '中国,广东省,东莞市,虎门镇', '113.711', '22.8262', 'Humen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441930', '厚街镇', '441900', '厚街', '3', '769', '523960', '中国,广东省,东莞市,厚街镇', '113.673', '22.9408', 'Houjie', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441931', '凤岗镇', '441900', '凤岗', '3', '769', '523690', '中国,广东省,东莞市,凤岗镇', '114.141', '22.7446', 'Fenggang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('441932', '长安镇', '441900', '长安', '3', '769', '523850', '中国,广东省,东莞市,长安镇', '113.804', '22.8166', 'Changan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442000', '中山市', '440000', '中山', '2', '760', '528403', '中国,广东省,中山市', '113.382', '22.5211', 'Zhongshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442001', '石岐区', '442000', '石岐', '3', '760', '528400', '中国,广东省,中山市,石岐区', '113.379', '22.5252', 'Shiqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442004', '南区', '442000', '南区', '3', '760', '528400', '中国,广东省,中山市,南区', '113.356', '22.4866', 'Nanqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442005', '五桂山区', '442000', '五桂山', '3', '760', '528458', '中国,广东省,中山市,五桂山区', '113.411', '22.5197', 'Wuguishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442006', '火炬开发区', '442000', '火炬', '3', '760', '528437', '中国,广东省,中山市,火炬开发区', '113.481', '22.5661', 'Huoju', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442007', '黄圃镇', '442000', '黄圃', '3', '760', '528429', '中国,广东省,中山市,黄圃镇', '113.342', '22.7151', 'Huangpu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442008', '南头镇', '442000', '南头', '3', '760', '528421', '中国,广东省,中山市,南头镇', '113.296', '22.7139', 'Nantou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442009', '东凤镇', '442000', '东凤', '3', '760', '528425', '中国,广东省,中山市,东凤镇', '113.261', '22.6877', 'Dongfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442010', '阜沙镇', '442000', '阜沙', '3', '760', '528434', '中国,广东省,中山市,阜沙镇', '113.353', '22.6664', 'Fusha', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442011', '小榄镇', '442000', '小榄', '3', '760', '528415', '中国,广东省,中山市,小榄镇', '113.244', '22.667', 'Xiaolan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442012', '东升镇', '442000', '东升', '3', '760', '528400', '中国,广东省,中山市,东升镇', '113.296', '22.614', 'Dongsheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442013', '古镇镇', '442000', '古镇', '3', '760', '528422', '中国,广东省,中山市,古镇镇', '113.18', '22.611', 'Guzhen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442014', '横栏镇', '442000', '横栏', '3', '760', '528478', '中国,广东省,中山市,横栏镇', '113.266', '22.5232', 'Henglan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442015', '三角镇', '442000', '三角', '3', '760', '528422', '中国,广东省,中山市,三角镇', '113.424', '22.677', 'Sanjiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442016', '民众镇', '442000', '民众', '3', '760', '528441', '中国,广东省,中山市,民众镇', '113.486', '22.6235', 'Minzhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442017', '南朗镇', '442000', '南朗', '3', '760', '528454', '中国,广东省,中山市,南朗镇', '113.534', '22.4924', 'Nanlang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442018', '港口镇', '442000', '港口', '3', '760', '528447', '中国,广东省,中山市,港口镇', '113.382', '22.5211', 'Gangkou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442019', '大涌镇', '442000', '大涌', '3', '760', '528476', '中国,广东省,中山市,大涌镇', '113.292', '22.4677', 'Dayong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442020', '沙溪镇', '442000', '沙溪', '3', '760', '528471', '中国,广东省,中山市,沙溪镇', '113.328', '22.5263', 'Shaxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442021', '三乡镇', '442000', '三乡', '3', '760', '528463', '中国,广东省,中山市,三乡镇', '113.433', '22.3525', 'Sanxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442022', '板芙镇', '442000', '板芙', '3', '760', '528459', '中国,广东省,中山市,板芙镇', '113.32', '22.4157', 'Banfu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442023', '神湾镇', '442000', '神湾', '3', '760', '528462', '中国,广东省,中山市,神湾镇', '113.359', '22.3125', 'Shenwan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('442024', '坦洲镇', '442000', '坦洲', '3', '760', '528467', '中国,广东省,中山市,坦洲镇', '113.486', '22.2613', 'Tanzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('445100', '潮州市', '440000', '潮州', '2', '768', '521000', '中国,广东省,潮州市', '116.632', '23.6617', 'Chaozhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('445102', '湘桥区', '445100', '湘桥', '3', '768', '521000', '中国,广东省,潮州市,湘桥区', '116.628', '23.6745', 'Xiangqiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('445103', '潮安区', '445100', '潮安', '3', '768', '515638', '中国,广东省,潮州市,潮安区', '116.593', '23.6437', 'Chaoan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('445122', '饶平县', '445100', '饶平', '3', '768', '515700', '中国,广东省,潮州市,饶平县', '117.007', '23.6699', 'Raoping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('445200', '揭阳市', '440000', '揭阳', '2', '633', '522000', '中国,广东省,揭阳市', '116.356', '23.5438', 'Jieyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('445202', '榕城区', '445200', '榕城', '3', '633', '522000', '中国,广东省,揭阳市,榕城区', '116.367', '23.5251', 'Rongcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('445203', '揭东区', '445200', '揭东', '3', '633', '515500', '中国,广东省,揭阳市,揭东区', '116.413', '23.5699', 'Jiedong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('445222', '揭西县', '445200', '揭西', '3', '633', '515400', '中国,广东省,揭阳市,揭西县', '115.839', '23.4271', 'Jiexi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('445224', '惠来县', '445200', '惠来', '3', '633', '515200', '中国,广东省,揭阳市,惠来县', '116.296', '23.0329', 'Huilai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('445281', '普宁市', '445200', '普宁', '3', '633', '515300', '中国,广东省,揭阳市,普宁市', '116.166', '23.2973', 'Puning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('445300', '云浮市', '440000', '云浮', '2', '766', '527300', '中国,广东省,云浮市', '112.044', '22.9298', 'Yunfu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('445302', '云城区', '445300', '云城', '3', '766', '527300', '中国,广东省,云浮市,云城区', '112.039', '22.93', 'Yuncheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('445303', '云安区', '445300', '云安', '3', '766', '527500', '中国,广东省,云浮市,云安区', '112.009', '23.0778', 'Yunan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('445321', '新兴县', '445300', '新兴', '3', '766', '527400', '中国,广东省,云浮市,新兴县', '112.23', '22.6973', 'Xinxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('445322', '郁南县', '445300', '郁南', '3', '766', '527100', '中国,广东省,云浮市,郁南县', '111.534', '23.2331', 'Yunan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('445381', '罗定市', '445300', '罗定', '3', '766', '527200', '中国,广东省,云浮市,罗定市', '111.57', '22.7697', 'Luoding', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450000', '广西壮族自治区', '100000', '广西', '1', '0', '0', '中国,广西壮族自治区', '108.32', '22.824', 'Guangxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450100', '南宁市', '450000', '南宁', '2', '771', '530028', '中国,广西壮族自治区,南宁市', '108.32', '22.824', 'Nanning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450102', '兴宁区', '450100', '兴宁', '3', '771', '530023', '中国,广西壮族自治区,南宁市,兴宁区', '108.367', '22.8535', 'Xingning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450103', '青秀区', '450100', '青秀', '3', '771', '530213', '中国,广西壮族自治区,南宁市,青秀区', '108.495', '22.7851', 'Qingxiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450105', '江南区', '450100', '江南', '3', '771', '530031', '中国,广西壮族自治区,南宁市,江南区', '108.273', '22.7813', 'Jiangnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450107', '西乡塘区', '450100', '西乡塘', '3', '771', '530001', '中国,广西壮族自治区,南宁市,西乡塘区', '108.313', '22.8339', 'Xixiangtang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450108', '良庆区', '450100', '良庆', '3', '771', '530219', '中国,广西壮族自治区,南宁市,良庆区', '108.413', '22.7491', 'Liangqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450109', '邕宁区', '450100', '邕宁', '3', '771', '530200', '中国,广西壮族自治区,南宁市,邕宁区', '108.487', '22.7563', 'Yongning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450122', '武鸣县', '450100', '武鸣', '3', '771', '530100', '中国,广西壮族自治区,南宁市,武鸣县', '108.277', '23.1564', 'Wuming', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450123', '隆安县', '450100', '隆安', '3', '771', '532700', '中国,广西壮族自治区,南宁市,隆安县', '107.692', '23.1734', 'Longan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450124', '马山县', '450100', '马山', '3', '771', '530600', '中国,广西壮族自治区,南宁市,马山县', '108.177', '23.7093', 'Mashan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450125', '上林县', '450100', '上林', '3', '771', '530500', '中国,广西壮族自治区,南宁市,上林县', '108.605', '23.432', 'Shanglin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450126', '宾阳县', '450100', '宾阳', '3', '771', '530400', '中国,广西壮族自治区,南宁市,宾阳县', '108.812', '23.2196', 'Binyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450127', '横县', '450100', '横县', '3', '771', '530300', '中国,广西壮族自治区,南宁市,横县', '109.266', '22.6845', 'Hengxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450128', '埌东新区', '450100', '埌东', '3', '771', '530000', '中国,广西壮族自治区,南宁市,埌东新区', '108.419', '22.813', 'Langdong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450200', '柳州市', '450000', '柳州', '2', '772', '545001', '中国,广西壮族自治区,柳州市', '109.412', '24.3146', 'Liuzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450202', '城中区', '450200', '城中', '3', '772', '545001', '中国,广西壮族自治区,柳州市,城中区', '109.411', '24.3154', 'Chengzhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450203', '鱼峰区', '450200', '鱼峰', '3', '772', '545005', '中国,广西壮族自治区,柳州市,鱼峰区', '109.453', '24.3187', 'Yufeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450204', '柳南区', '450200', '柳南', '3', '772', '545007', '中国,广西壮族自治区,柳州市,柳南区', '109.385', '24.336', 'Liunan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450205', '柳北区', '450200', '柳北', '3', '772', '545002', '中国,广西壮族自治区,柳州市,柳北区', '109.402', '24.3627', 'Liubei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450221', '柳江县', '450200', '柳江', '3', '772', '545100', '中国,广西壮族自治区,柳州市,柳江县', '109.333', '24.256', 'Liujiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450222', '柳城县', '450200', '柳城', '3', '772', '545200', '中国,广西壮族自治区,柳州市,柳城县', '109.239', '24.6495', 'Liucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450223', '鹿寨县', '450200', '鹿寨', '3', '772', '545600', '中国,广西壮族自治区,柳州市,鹿寨县', '109.752', '24.4731', 'Luzhai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450224', '融安县', '450200', '融安', '3', '772', '545400', '中国,广西壮族自治区,柳州市,融安县', '109.398', '25.2246', 'Rongan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450225', '融水苗族自治县', '450200', '融水', '3', '772', '545300', '中国,广西壮族自治区,柳州市,融水苗族自治县', '109.256', '25.0663', 'Rongshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450226', '三江侗族自治县', '450200', '三江', '3', '772', '545500', '中国,广西壮族自治区,柳州市,三江侗族自治县', '109.604', '25.7843', 'Sanjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450227', '柳东新区', '450200', '柳东', '3', '772', '545000', '中国,广西壮族自治区,柳州市,柳东新区', '109.437', '24.3292', 'Liudong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450300', '桂林市', '450000', '桂林', '2', '773', '541100', '中国,广西壮族自治区,桂林市', '110.299', '25.2742', 'Guilin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450302', '秀峰区', '450300', '秀峰', '3', '773', '541001', '中国,广西壮族自治区,桂林市,秀峰区', '110.289', '25.2825', 'Xiufeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450303', '叠彩区', '450300', '叠彩', '3', '773', '541001', '中国,广西壮族自治区,桂林市,叠彩区', '110.302', '25.3138', 'Diecai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450304', '象山区', '450300', '象山', '3', '773', '541002', '中国,广西壮族自治区,桂林市,象山区', '110.281', '25.2617', 'Xiangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450305', '七星区', '450300', '七星', '3', '773', '541004', '中国,广西壮族自治区,桂林市,七星区', '110.318', '25.2525', 'Qixing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450311', '雁山区', '450300', '雁山', '3', '773', '541006', '中国,广西壮族自治区,桂林市,雁山区', '110.309', '25.0604', 'Yanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450312', '临桂区', '450300', '临桂', '3', '773', '541100', '中国,广西壮族自治区,桂林市,临桂区', '110.205', '25.2463', 'Lingui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450321', '阳朔县', '450300', '阳朔', '3', '773', '541900', '中国,广西壮族自治区,桂林市,阳朔县', '110.495', '24.7758', 'Yangshuo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450323', '灵川县', '450300', '灵川', '3', '773', '541200', '中国,广西壮族自治区,桂林市,灵川县', '110.329', '25.4129', 'Lingchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450324', '全州县', '450300', '全州', '3', '773', '541503', '中国,广西壮族自治区,桂林市,全州县', '111.072', '25.928', 'Quanzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450325', '兴安县', '450300', '兴安', '3', '773', '541300', '中国,广西壮族自治区,桂林市,兴安县', '110.671', '25.6117', 'Xingan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450326', '永福县', '450300', '永福', '3', '773', '541800', '中国,广西壮族自治区,桂林市,永福县', '109.983', '24.98', 'Yongfu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450327', '灌阳县', '450300', '灌阳', '3', '773', '541600', '中国,广西壮族自治区,桂林市,灌阳县', '111.16', '25.488', 'Guanyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450328', '龙胜各族自治县', '450300', '龙胜', '3', '773', '541700', '中国,广西壮族自治区,桂林市,龙胜各族自治县', '110.012', '25.7961', 'Longsheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450329', '资源县', '450300', '资源', '3', '773', '541400', '中国,广西壮族自治区,桂林市,资源县', '110.653', '26.0424', 'Ziyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450330', '平乐县', '450300', '平乐', '3', '773', '542400', '中国,广西壮族自治区,桂林市,平乐县', '110.642', '24.6324', 'Pingle', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450331', '荔浦县', '450300', '荔浦', '3', '773', '546600', '中国,广西壮族自治区,桂林市,荔浦县', '110.397', '24.4959', 'Lipu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450332', '恭城瑶族自治县', '450300', '恭城', '3', '773', '542500', '中国,广西壮族自治区,桂林市,恭城瑶族自治县', '110.83', '24.8329', 'Gongcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450400', '梧州市', '450000', '梧州', '2', '774', '543002', '中国,广西壮族自治区,梧州市', '111.316', '23.4723', 'Wuzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450403', '万秀区', '450400', '万秀', '3', '774', '543000', '中国,广西壮族自治区,梧州市,万秀区', '111.321', '23.473', 'Wanxiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450405', '长洲区', '450400', '长洲', '3', '774', '543003', '中国,广西壮族自治区,梧州市,长洲区', '111.275', '23.4857', 'Changzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450406', '龙圩区', '450400', '龙圩', '3', '774', '543002', '中国,广西壮族自治区,梧州市,龙圩区', '111.316', '23.4723', 'Longxu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450421', '苍梧县', '450400', '苍梧', '3', '774', '543100', '中国,广西壮族自治区,梧州市,苍梧县', '111.245', '23.4205', 'Cangwu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450422', '藤县', '450400', '藤县', '3', '774', '543300', '中国,广西壮族自治区,梧州市,藤县', '110.914', '23.3761', 'Tengxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450423', '蒙山县', '450400', '蒙山', '3', '774', '546700', '中国,广西壮族自治区,梧州市,蒙山县', '110.522', '24.2017', 'Mengshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450481', '岑溪市', '450400', '岑溪', '3', '774', '543200', '中国,广西壮族自治区,梧州市,岑溪市', '110.996', '22.9191', 'Cenxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450500', '北海市', '450000', '北海', '2', '779', '536000', '中国,广西壮族自治区,北海市', '109.119', '21.4733', 'Beihai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450502', '海城区', '450500', '海城', '3', '779', '536000', '中国,广西壮族自治区,北海市,海城区', '109.117', '21.475', 'Haicheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450503', '银海区', '450500', '银海', '3', '779', '536000', '中国,广西壮族自治区,北海市,银海区', '109.13', '21.4783', 'Yinhai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450512', '铁山港区', '450500', '铁山港', '3', '779', '536017', '中国,广西壮族自治区,北海市,铁山港区', '109.456', '21.5966', 'Tieshangang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450521', '合浦县', '450500', '合浦', '3', '779', '536100', '中国,广西壮族自治区,北海市,合浦县', '109.201', '21.666', 'Hepu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450600', '防城港市', '450000', '防城港', '2', '770', '538001', '中国,广西壮族自治区,防城港市', '108.345', '21.6146', 'Fangchenggang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450602', '港口区', '450600', '港口', '3', '770', '538001', '中国,广西壮族自治区,防城港市,港口区', '108.38', '21.6434', 'Gangkou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450603', '防城区', '450600', '防城', '3', '770', '538021', '中国,广西壮族自治区,防城港市,防城区', '108.357', '21.7646', 'Fangcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450621', '上思县', '450600', '上思', '3', '770', '535500', '中国,广西壮族自治区,防城港市,上思县', '107.982', '22.1496', 'Shangsi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450681', '东兴市', '450600', '东兴', '3', '770', '538100', '中国,广西壮族自治区,防城港市,东兴市', '107.972', '21.5471', 'Dongxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450700', '钦州市', '450000', '钦州', '2', '777', '535099', '中国,广西壮族自治区,钦州市', '108.624', '21.9671', 'Qinzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450702', '钦南区', '450700', '钦南', '3', '777', '535099', '中国,广西壮族自治区,钦州市,钦南区', '108.618', '21.9514', 'Qinnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450703', '钦北区', '450700', '钦北', '3', '777', '535099', '中国,广西壮族自治区,钦州市,钦北区', '108.63', '21.9513', 'Qinbei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450721', '灵山县', '450700', '灵山', '3', '777', '535099', '中国,广西壮族自治区,钦州市,灵山县', '109.292', '22.4165', 'Lingshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450722', '浦北县', '450700', '浦北', '3', '777', '535099', '中国,广西壮族自治区,钦州市,浦北县', '109.556', '22.2689', 'Pubei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450800', '贵港市', '450000', '贵港', '2', '775', '537100', '中国,广西壮族自治区,贵港市', '109.602', '23.0936', 'Guigang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450802', '港北区', '450800', '港北', '3', '775', '537100', '中国,广西壮族自治区,贵港市,港北区', '109.572', '23.1115', 'Gangbei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450803', '港南区', '450800', '港南', '3', '775', '537100', '中国,广西壮族自治区,贵港市,港南区', '109.606', '23.0723', 'Gangnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450804', '覃塘区', '450800', '覃塘', '3', '775', '537121', '中国,广西壮族自治区,贵港市,覃塘区', '109.443', '23.1268', 'Qintang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450821', '平南县', '450800', '平南', '3', '775', '537300', '中国,广西壮族自治区,贵港市,平南县', '110.391', '23.542', 'Pingnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450881', '桂平市', '450800', '桂平', '3', '775', '537200', '中国,广西壮族自治区,贵港市,桂平市', '110.081', '23.3934', 'Guiping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450900', '玉林市', '450000', '玉林', '2', '775', '537000', '中国,广西壮族自治区,玉林市', '110.154', '22.6314', 'Yulin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450902', '玉州区', '450900', '玉州', '3', '775', '537000', '中国,广西壮族自治区,玉林市,玉州区', '110.151', '22.6281', 'Yuzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450903', '福绵区', '450900', '福绵', '3', '775', '537023', '中国,广西壮族自治区,玉林市,福绵区', '110.065', '22.5831', 'Fumian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450904', '玉东新区', '450900', '玉东', '3', '775', '537000', '中国,广西壮族自治区,玉林市,玉东新区', '110.154', '22.6314', 'Yudong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450921', '容县', '450900', '容县', '3', '775', '537500', '中国,广西壮族自治区,玉林市,容县', '110.556', '22.857', 'Rongxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450922', '陆川县', '450900', '陆川', '3', '775', '537700', '中国,广西壮族自治区,玉林市,陆川县', '110.264', '22.3245', 'Luchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450923', '博白县', '450900', '博白', '3', '775', '537600', '中国,广西壮族自治区,玉林市,博白县', '109.977', '22.2729', 'Bobai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450924', '兴业县', '450900', '兴业', '3', '775', '537800', '中国,广西壮族自治区,玉林市,兴业县', '109.876', '22.7424', 'Xingye', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('450981', '北流市', '450900', '北流', '3', '775', '537400', '中国,广西壮族自治区,玉林市,北流市', '110.353', '22.7082', 'Beiliu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451000', '百色市', '450000', '百色', '2', '776', '533000', '中国,广西壮族自治区,百色市', '106.616', '23.8977', 'Baise', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451002', '右江区', '451000', '右江', '3', '776', '533000', '中国,广西壮族自治区,百色市,右江区', '106.618', '23.9009', 'Youjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451021', '田阳县', '451000', '田阳', '3', '776', '533600', '中国,广西壮族自治区,百色市,田阳县', '106.916', '23.7353', 'Tianyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451022', '田东县', '451000', '田东', '3', '776', '531500', '中国,广西壮族自治区,百色市,田东县', '107.124', '23.6', 'Tiandong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451023', '平果县', '451000', '平果', '3', '776', '531400', '中国,广西壮族自治区,百色市,平果县', '107.59', '23.3297', 'Pingguo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451024', '德保县', '451000', '德保', '3', '776', '533700', '中国,广西壮族自治区,百色市,德保县', '106.619', '23.3251', 'Debao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451025', '靖西县', '451000', '靖西', '3', '776', '533800', '中国,广西壮族自治区,百色市,靖西县', '106.418', '23.1343', 'Jingxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451026', '那坡县', '451000', '那坡', '3', '776', '533900', '中国,广西壮族自治区,百色市,那坡县', '105.842', '23.4065', 'Napo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451027', '凌云县', '451000', '凌云', '3', '776', '533100', '中国,广西壮族自治区,百色市,凌云县', '106.562', '24.3475', 'Lingyun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451028', '乐业县', '451000', '乐业', '3', '776', '533200', '中国,广西壮族自治区,百色市,乐业县', '106.561', '24.7829', 'Leye', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451029', '田林县', '451000', '田林', '3', '776', '533300', '中国,广西壮族自治区,百色市,田林县', '106.229', '24.2921', 'Tianlin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451030', '西林县', '451000', '西林', '3', '776', '533500', '中国,广西壮族自治区,百色市,西林县', '105.097', '24.4897', 'Xilin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451031', '隆林各族自治县', '451000', '隆林', '3', '776', '533400', '中国,广西壮族自治区,百色市,隆林各族自治县', '105.343', '24.7704', 'Longlin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451100', '贺州市', '450000', '贺州', '2', '774', '542800', '中国,广西壮族自治区,贺州市', '111.552', '24.4141', 'Hezhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451102', '八步区', '451100', '八步', '3', '774', '542800', '中国,广西壮族自治区,贺州市,八步区', '111.552', '24.4118', 'Babu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451121', '昭平县', '451100', '昭平', '3', '774', '546800', '中国,广西壮族自治区,贺州市,昭平县', '110.811', '24.1701', 'Zhaoping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451122', '钟山县', '451100', '钟山', '3', '774', '542600', '中国,广西壮族自治区,贺州市,钟山县', '111.305', '24.5248', 'Zhongshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451123', '富川瑶族自治县', '451100', '富川', '3', '774', '542700', '中国,广西壮族自治区,贺州市,富川瑶族自治县', '111.278', '24.8143', 'Fuchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451124', '平桂管理区', '451100', '平桂', '3', '774', '542800', '中国,广西壮族自治区,贺州市,平桂管理区', '111.486', '24.458', 'Pingui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451200', '河池市', '450000', '河池', '2', '778', '547000', '中国,广西壮族自治区,河池市', '108.062', '24.6959', 'Hechi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451202', '金城江区', '451200', '金城江', '3', '779', '547000', '中国,广西壮族自治区,河池市,金城江区', '108.037', '24.6897', 'Jinchengjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451221', '南丹县', '451200', '南丹', '3', '781', '547200', '中国,广西壮族自治区,河池市,南丹县', '107.546', '24.9776', 'Nandan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451222', '天峨县', '451200', '天峨', '3', '782', '547300', '中国,广西壮族自治区,河池市,天峨县', '107.172', '24.9959', 'Tiane', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451223', '凤山县', '451200', '凤山', '3', '783', '547600', '中国,广西壮族自治区,河池市,凤山县', '107.049', '24.5422', 'Fengshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451224', '东兰县', '451200', '东兰', '3', '784', '547400', '中国,广西壮族自治区,河池市,东兰县', '107.375', '24.5105', 'Donglan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451225', '罗城仫佬族自治县', '451200', '罗城', '3', '785', '546400', '中国,广西壮族自治区,河池市,罗城仫佬族自治县', '108.908', '24.7792', 'Luocheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451226', '环江毛南族自治县', '451200', '环江', '3', '786', '547100', '中国,广西壮族自治区,河池市,环江毛南族自治县', '108.261', '24.8292', 'Huanjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451227', '巴马瑶族自治县', '451200', '巴马', '3', '787', '547500', '中国,广西壮族自治区,河池市,巴马瑶族自治县', '107.253', '24.1413', 'Bama', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451228', '都安瑶族自治县', '451200', '都安', '3', '788', '530700', '中国,广西壮族自治区,河池市,都安瑶族自治县', '108.101', '23.9324', 'Duan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451229', '大化瑶族自治县', '451200', '大化', '3', '789', '530800', '中国,广西壮族自治区,河池市,大化瑶族自治县', '107.998', '23.7449', 'Dahua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451281', '宜州市', '451200', '宜州', '3', '780', '546300', '中国,广西壮族自治区,河池市,宜州市', '108.653', '24.4939', 'Yizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451300', '来宾市', '450000', '来宾', '2', '772', '546100', '中国,广西壮族自治区,来宾市', '109.23', '23.7338', 'Laibin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451302', '兴宾区', '451300', '兴宾', '3', '772', '546100', '中国,广西壮族自治区,来宾市,兴宾区', '109.235', '23.7273', 'Xingbin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451321', '忻城县', '451300', '忻城', '3', '772', '546200', '中国,广西壮族自治区,来宾市,忻城县', '108.664', '24.0686', 'Xincheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451322', '象州县', '451300', '象州', '3', '772', '545800', '中国,广西壮族自治区,来宾市,象州县', '109.699', '23.9736', 'Xiangzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451323', '武宣县', '451300', '武宣', '3', '772', '545900', '中国,广西壮族自治区,来宾市,武宣县', '109.663', '23.5947', 'Wuxuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451324', '金秀瑶族自治县', '451300', '金秀', '3', '772', '545799', '中国,广西壮族自治区,来宾市,金秀瑶族自治县', '110.191', '24.1293', 'Jinxiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451381', '合山市', '451300', '合山', '3', '772', '546500', '中国,广西壮族自治区,来宾市,合山市', '108.886', '23.8062', 'Heshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451400', '崇左市', '450000', '崇左', '2', '771', '532299', '中国,广西壮族自治区,崇左市', '107.354', '22.4041', 'Chongzuo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451402', '江州区', '451400', '江州', '3', '771', '532299', '中国,广西壮族自治区,崇左市,江州区', '107.347', '22.4114', 'Jiangzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451421', '扶绥县', '451400', '扶绥', '3', '771', '532199', '中国,广西壮族自治区,崇左市,扶绥县', '107.904', '22.6341', 'Fusui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451422', '宁明县', '451400', '宁明', '3', '771', '532599', '中国,广西壮族自治区,崇左市,宁明县', '107.073', '22.1366', 'Ningming', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451423', '龙州县', '451400', '龙州', '3', '771', '532499', '中国,广西壮族自治区,崇左市,龙州县', '106.854', '22.3394', 'Longzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451424', '大新县', '451400', '大新', '3', '771', '532399', '中国,广西壮族自治区,崇左市,大新县', '107.198', '22.8341', 'Daxin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451425', '天等县', '451400', '天等', '3', '771', '532899', '中国,广西壮族自治区,崇左市,天等县', '107.14', '23.077', 'Tiandeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('451481', '凭祥市', '451400', '凭祥', '3', '771', '532699', '中国,广西壮族自治区,崇左市,凭祥市', '106.755', '22.1057', 'Pingxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('460000', '海南省', '100000', '海南', '1', '0', '0', '中国,海南省', '110.331', '20.032', 'Hainan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('460100', '海口市', '460000', '海口', '2', '898', '570000', '中国,海南省,海口市', '110.331', '20.032', 'Haikou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('460105', '秀英区', '460100', '秀英', '3', '898', '570311', '中国,海南省,海口市,秀英区', '110.293', '20.0075', 'Xiuying', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('460106', '龙华区', '460100', '龙华', '3', '898', '570145', '中国,海南省,海口市,龙华区', '110.302', '20.0287', 'Longhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('460107', '琼山区', '460100', '琼山', '3', '898', '571100', '中国,海南省,海口市,琼山区', '110.354', '20.0032', 'Qiongshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('460108', '美兰区', '460100', '美兰', '3', '898', '570203', '中国,海南省,海口市,美兰区', '110.369', '20.0286', 'Meilan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('460200', '三亚市', '460000', '三亚', '2', '898', '572000', '中国,海南省,三亚市', '109.508', '18.2479', 'Sanya', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('460202', '海棠区', '460200', '海棠', '3', '898', '572000', '中国,海南省,三亚市,海棠区', '109.508', '18.2479', 'Haitang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('460203', '吉阳区', '460200', '吉阳', '3', '898', '572000', '中国,海南省,三亚市,吉阳区', '109.508', '18.2479', 'Jiyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('460204', '天涯区', '460200', '天涯', '3', '898', '572000', '中国,海南省,三亚市,天涯区', '109.508', '18.2479', 'Tianya', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('460205', '崖州区', '460200', '崖州', '3', '898', '572000', '中国,海南省,三亚市,崖州区', '109.508', '18.2479', 'Yazhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('460300', '三沙市', '460000', '三沙', '2', '898', '573199', '中国,海南省,三沙市', '112.349', '16.831', 'Sansha', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('460321', '西沙群岛', '460300', '西沙', '3', '898', '572000', '中国,海南省,三沙市,西沙群岛', '112.026', '16.3313', 'Xisha Islands', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('460322', '南沙群岛', '460300', '南沙', '3', '898', '573100', '中国,海南省,三沙市,南沙群岛', '116.75', '11.4719', 'Nansha Islands', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('460323', '中沙群岛', '460300', '中沙', '3', '898', '573100', '中国,海南省,三沙市,中沙群岛', '117.74', '15.1129', 'Zhongsha Islands', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('469001', '五指山市', '460000', '五指山', '2', '898', '572200', '中国,海南省,五指山市', '109.517', '18.7769', 'Wuzhishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('469002', '琼海市', '460000', '琼海', '2', '898', '571400', '中国,海南省,琼海市', '110.467', '19.246', 'Qionghai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('469003', '儋州市', '460000', '儋州', '2', '898', '571700', '中国,海南省,儋州市', '109.577', '19.5175', 'Danzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('469005', '文昌市', '460000', '文昌', '2', '898', '571339', '中国,海南省,文昌市', '110.754', '19.613', 'Wenchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('469006', '万宁市', '460000', '万宁', '2', '898', '571500', '中国,海南省,万宁市', '110.389', '18.7962', 'Wanning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('469007', '东方市', '460000', '东方', '2', '898', '572600', '中国,海南省,东方市', '108.654', '19.102', 'Dongfang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('469021', '定安县', '460000', '定安', '2', '898', '571200', '中国,海南省,定安县', '110.324', '19.6992', 'Dingan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('469022', '屯昌县', '460000', '屯昌', '2', '898', '571600', '中国,海南省,屯昌县', '110.103', '19.3629', 'Tunchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('469023', '澄迈县', '460000', '澄迈', '2', '898', '571900', '中国,海南省,澄迈县', '110.007', '19.7371', 'Chengmai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('469024', '临高县', '460000', '临高', '2', '898', '571800', '中国,海南省,临高县', '109.688', '19.9083', 'Lingao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('469025', '白沙黎族自治县', '460000', '白沙', '2', '898', '572800', '中国,海南省,白沙黎族自治县', '109.453', '19.2246', 'Baisha', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('469026', '昌江黎族自治县', '460000', '昌江', '2', '898', '572700', '中国,海南省,昌江黎族自治县', '109.053', '19.261', 'Changjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('469027', '乐东黎族自治县', '460000', '乐东', '2', '898', '572500', '中国,海南省,乐东黎族自治县', '109.175', '18.7476', 'Ledong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('469028', '陵水黎族自治县', '460000', '陵水', '2', '898', '572400', '中国,海南省,陵水黎族自治县', '110.037', '18.505', 'Lingshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('469029', '保亭黎族苗族自治县', '460000', '保亭', '2', '898', '572300', '中国,海南省,保亭黎族苗族自治县', '109.702', '18.6364', 'Baoting', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('469030', '琼中黎族苗族自治县', '460000', '琼中', '2', '898', '572900', '中国,海南省,琼中黎族苗族自治县', '109.84', '19.0356', 'Qiongzhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500100', '重庆市', '100000', '重庆', '1', '0', '0', '中国,重庆市', '106.505', '29.5332', 'Chongqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500101', '万州区', '500100', '万州', '2', '23', '404000', '中国,重庆市,万州区', '108.409', '30.8079', 'Wanzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500102', '涪陵区', '500100', '涪陵', '2', '23', '408000', '中国,重庆市,涪陵区', '107.39', '29.7029', 'Fuling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500103', '渝中区', '500100', '渝中', '2', '23', '400010', '中国,重庆市,渝中区', '106.569', '29.5528', 'Yuzhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500104', '大渡口区', '500100', '大渡口', '2', '23', '400080', '中国,重庆市,大渡口区', '106.483', '29.4845', 'Dadukou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500105', '江北区', '500100', '江北', '2', '23', '400020', '中国,重庆市,江北区', '106.574', '29.6066', 'Jiangbei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500106', '沙坪坝区', '500100', '沙坪坝', '2', '23', '400030', '中国,重庆市,沙坪坝区', '106.458', '29.5411', 'Shapingba', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500107', '九龙坡区', '500100', '九龙坡', '2', '23', '400050', '中国,重庆市,九龙坡区', '106.511', '29.502', 'Jiulongpo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500108', '南岸区', '500100', '南岸', '2', '23', '400064', '中国,重庆市,南岸区', '106.563', '29.5231', 'Nanan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500109', '北碚区', '500100', '北碚', '2', '23', '400700', '中国,重庆市,北碚区', '106.396', '29.8057', 'Beibei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500110', '綦江区', '500100', '綦江', '2', '23', '400800', '中国,重庆市,綦江区', '106.927', '28.9607', 'Qijiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500111', '大足区', '500100', '大足', '2', '23', '400900', '中国,重庆市,大足区', '105.768', '29.484', 'Dazu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500112', '渝北区', '500100', '渝北', '2', '23', '401120', '中国,重庆市,渝北区', '106.631', '29.7182', 'Yubei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500113', '巴南区', '500100', '巴南', '2', '23', '401320', '中国,重庆市,巴南区', '106.524', '29.3831', 'Banan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500114', '黔江区', '500100', '黔江', '2', '23', '409700', '中国,重庆市,黔江区', '108.771', '29.5332', 'Qianjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500115', '长寿区', '500100', '长寿', '2', '23', '401220', '中国,重庆市,长寿区', '107.082', '29.8536', 'Changshou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500116', '江津区', '500100', '江津', '2', '23', '402260', '中国,重庆市,江津区', '106.259', '29.2901', 'Jiangjin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500117', '合川区', '500100', '合川', '2', '23', '401520', '中国,重庆市,合川区', '106.276', '29.9723', 'Hechuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500118', '永川区', '500100', '永川', '2', '23', '402160', '中国,重庆市,永川区', '105.927', '29.3559', 'Yongchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500119', '南川区', '500100', '南川', '2', '23', '408400', '中国,重庆市,南川区', '107.099', '29.1575', 'Nanchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500120', '璧山区', '500100', '璧山', '2', '23', '402760', '中国,重庆市,璧山区', '106.231', '29.5936', 'Bishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500151', '铜梁区', '500100', '铜梁', '2', '23', '402560', '中国,重庆市,铜梁区', '106.055', '29.8399', 'Tongliang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500223', '潼南县', '500100', '潼南', '2', '23', '402660', '中国,重庆市,潼南县', '105.84', '30.1912', 'Tongnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500226', '荣昌县', '500100', '荣昌', '2', '23', '402460', '中国,重庆市,荣昌县', '105.594', '29.4049', 'Rongchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500228', '梁平县', '500100', '梁平', '2', '23', '405200', '中国,重庆市,梁平县', '107.8', '30.6754', 'Liangping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500229', '城口县', '500100', '城口', '2', '23', '405900', '中国,重庆市,城口县', '108.665', '31.948', 'Chengkou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500230', '丰都县', '500100', '丰都', '2', '23', '408200', '中国,重庆市,丰都县', '107.731', '29.8635', 'Fengdu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500231', '垫江县', '500100', '垫江', '2', '23', '408300', '中国,重庆市,垫江县', '107.354', '30.3336', 'Dianjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500232', '武隆县', '500100', '武隆', '2', '23', '408500', '中国,重庆市,武隆县', '107.76', '29.3255', 'Wulong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500233', '忠县', '500100', '忠县', '2', '23', '404300', '中国,重庆市,忠县', '108.037', '30.289', 'Zhongxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500234', '开县', '500100', '开县', '2', '23', '405400', '中国,重庆市,开县', '108.393', '31.1609', 'Kaixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500235', '云阳县', '500100', '云阳', '2', '23', '404500', '中国,重庆市,云阳县', '108.697', '30.9306', 'Yunyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500236', '奉节县', '500100', '奉节', '2', '23', '404600', '中国,重庆市,奉节县', '109.465', '31.0182', 'Fengjie', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500237', '巫山县', '500100', '巫山', '2', '23', '404700', '中国,重庆市,巫山县', '109.878', '31.0746', 'Wushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500238', '巫溪县', '500100', '巫溪', '2', '23', '405800', '中国,重庆市,巫溪县', '109.631', '31.3976', 'Wuxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500240', '石柱土家族自治县', '500100', '石柱', '2', '23', '409100', '中国,重庆市,石柱土家族自治县', '108.114', '30.0005', 'Shizhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500241', '秀山土家族苗族自治县', '500100', '秀山', '2', '23', '409900', '中国,重庆市,秀山土家族苗族自治县', '108.989', '28.4506', 'Xiushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500242', '酉阳土家族苗族自治县', '500100', '酉阳', '2', '23', '409800', '中国,重庆市,酉阳土家族苗族自治县', '108.772', '28.8446', 'Youyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500243', '彭水苗族土家族自治县', '500100', '彭水', '2', '23', '409600', '中国,重庆市,彭水苗族土家族自治县', '108.166', '29.2952', 'Pengshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500301', '北部新区', '500100', '北部新区', '2', '23', '400000', '中国,重庆市,北部新区', '106.489', '29.6671', 'Beibuxinqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500302', '保税港区', '500100', '保税港区', '2', '23', '400000', '中国,重庆市,保税港区', '106.638', '29.7163', 'Baoshuigangqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('500303', '工业园区', '500100', '工业园区', '2', '23', '400000', '中国,重庆市,工业园区', '106.626', '29.5555', 'Gongyeyuanqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510000', '四川省', '100000', '四川', '1', '0', '0', '中国,四川省', '104.066', '30.6595', 'Sichuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510100', '成都市', '510000', '成都', '2', '28', '610015', '中国,四川省,成都市', '104.066', '30.6595', 'Chengdu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510104', '锦江区', '510100', '锦江', '3', '28', '610021', '中国,四川省,成都市,锦江区', '104.083', '30.6561', 'Jinjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510105', '青羊区', '510100', '青羊', '3', '28', '610031', '中国,四川省,成都市,青羊区', '104.062', '30.6739', 'Qingyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510106', '金牛区', '510100', '金牛', '3', '28', '610036', '中国,四川省,成都市,金牛区', '104.051', '30.6913', 'Jinniu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510107', '武侯区', '510100', '武侯', '3', '28', '610041', '中国,四川省,成都市,武侯区', '104.043', '30.6423', 'Wuhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510108', '成华区', '510100', '成华', '3', '28', '610066', '中国,四川省,成都市,成华区', '104.102', '30.6599', 'Chenghua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510112', '龙泉驿区', '510100', '龙泉驿', '3', '28', '610100', '中国,四川省,成都市,龙泉驿区', '104.275', '30.5566', 'Longquanyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510113', '青白江区', '510100', '青白江', '3', '28', '610300', '中国,四川省,成都市,青白江区', '104.251', '30.8784', 'Qingbaijiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510114', '新都区', '510100', '新都', '3', '28', '610500', '中国,四川省,成都市,新都区', '104.159', '30.8231', 'Xindu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510115', '温江区', '510100', '温江', '3', '28', '611130', '中国,四川省,成都市,温江区', '103.849', '30.6844', 'Wenjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510121', '金堂县', '510100', '金堂', '3', '28', '610400', '中国,四川省,成都市,金堂县', '104.412', '30.8619', 'Jintang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510122', '双流县', '510100', '双流', '3', '28', '610200', '中国,四川省,成都市,双流县', '103.924', '30.5744', 'Shuangliu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510124', '郫县', '510100', '郫县', '3', '28', '611730', '中国,四川省,成都市,郫县', '103.887', '30.8105', 'Pixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510129', '大邑县', '510100', '大邑', '3', '28', '611330', '中国,四川省,成都市,大邑县', '103.521', '30.5874', 'Dayi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510131', '蒲江县', '510100', '蒲江', '3', '28', '611630', '中国,四川省,成都市,蒲江县', '103.506', '30.1967', 'Pujiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510132', '新津县', '510100', '新津', '3', '28', '611430', '中国,四川省,成都市,新津县', '103.811', '30.4098', 'Xinjin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510181', '都江堰市', '510100', '都江堰', '3', '28', '611830', '中国,四川省,成都市,都江堰市', '103.619', '30.9982', 'Dujiangyan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510182', '彭州市', '510100', '彭州', '3', '28', '611930', '中国,四川省,成都市,彭州市', '103.958', '30.9901', 'Pengzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510183', '邛崃市', '510100', '邛崃', '3', '28', '611530', '中国,四川省,成都市,邛崃市', '103.463', '30.4149', 'Qionglai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510184', '崇州市', '510100', '崇州', '3', '28', '611230', '中国,四川省,成都市,崇州市', '103.673', '30.6301', 'Chongzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510300', '自贡市', '510000', '自贡', '2', '813', '643000', '中国,四川省,自贡市', '104.773', '29.3528', 'Zigong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510302', '自流井区', '510300', '自流井', '3', '813', '643000', '中国,四川省,自贡市,自流井区', '104.777', '29.3375', 'Ziliujing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510303', '贡井区', '510300', '贡井', '3', '813', '643020', '中国,四川省,自贡市,贡井区', '104.715', '29.3458', 'Gongjing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510304', '大安区', '510300', '大安', '3', '813', '643010', '中国,四川省,自贡市,大安区', '104.774', '29.3636', 'Daan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510311', '沿滩区', '510300', '沿滩', '3', '813', '643030', '中国,四川省,自贡市,沿滩区', '104.88', '29.2661', 'Yantan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510321', '荣县', '510300', '荣县', '3', '813', '643100', '中国,四川省,自贡市,荣县', '104.418', '29.4445', 'Rongxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510322', '富顺县', '510300', '富顺', '3', '813', '643200', '中国,四川省,自贡市,富顺县', '104.975', '29.1812', 'Fushun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510400', '攀枝花市', '510000', '攀枝花', '2', '812', '617000', '中国,四川省,攀枝花市', '101.716', '26.5804', 'Panzhihua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510402', '东区', '510400', '东区', '3', '812', '617067', '中国,四川省,攀枝花市,东区', '101.705', '26.5468', 'Dongqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510403', '西区', '510400', '西区', '3', '812', '617068', '中国,四川省,攀枝花市,西区', '101.631', '26.5975', 'Xiqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510411', '仁和区', '510400', '仁和', '3', '812', '617061', '中国,四川省,攀枝花市,仁和区', '101.738', '26.4984', 'Renhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510421', '米易县', '510400', '米易', '3', '812', '617200', '中国,四川省,攀枝花市,米易县', '102.111', '26.8872', 'Miyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510422', '盐边县', '510400', '盐边', '3', '812', '617100', '中国,四川省,攀枝花市,盐边县', '101.854', '26.6885', 'Yanbian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510500', '泸州市', '510000', '泸州', '2', '830', '646000', '中国,四川省,泸州市', '105.443', '28.8891', 'Luzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510502', '江阳区', '510500', '江阳', '3', '830', '646000', '中国,四川省,泸州市,江阳区', '105.453', '28.8893', 'Jiangyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510503', '纳溪区', '510500', '纳溪', '3', '830', '646300', '中国,四川省,泸州市,纳溪区', '105.373', '28.7734', 'Naxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510504', '龙马潭区', '510500', '龙马潭', '3', '830', '646000', '中国,四川省,泸州市,龙马潭区', '105.438', '28.9131', 'Longmatan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510521', '泸县', '510500', '泸县', '3', '830', '646106', '中国,四川省,泸州市,泸县', '105.382', '29.1504', 'Luxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510522', '合江县', '510500', '合江', '3', '830', '646200', '中国,四川省,泸州市,合江县', '105.835', '28.81', 'Hejiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510524', '叙永县', '510500', '叙永', '3', '830', '646400', '中国,四川省,泸州市,叙永县', '105.445', '28.1559', 'Xuyong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510525', '古蔺县', '510500', '古蔺', '3', '830', '646500', '中国,四川省,泸州市,古蔺县', '105.813', '28.0387', 'Gulin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510600', '德阳市', '510000', '德阳', '2', '838', '618000', '中国,四川省,德阳市', '104.399', '31.128', 'Deyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510603', '旌阳区', '510600', '旌阳', '3', '838', '618000', '中国,四川省,德阳市,旌阳区', '104.394', '31.1391', 'Jingyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510623', '中江县', '510600', '中江', '3', '838', '618100', '中国,四川省,德阳市,中江县', '104.679', '31.033', 'Zhongjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510626', '罗江县', '510600', '罗江', '3', '838', '618500', '中国,四川省,德阳市,罗江县', '104.51', '31.3167', 'Luojiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510681', '广汉市', '510600', '广汉', '3', '838', '618300', '中国,四川省,德阳市,广汉市', '104.282', '30.9769', 'Guanghan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510682', '什邡市', '510600', '什邡', '3', '838', '618400', '中国,四川省,德阳市,什邡市', '104.168', '31.1264', 'Shifang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510683', '绵竹市', '510600', '绵竹', '3', '838', '618200', '中国,四川省,德阳市,绵竹市', '104.221', '31.3377', 'Mianzhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510700', '绵阳市', '510000', '绵阳', '2', '816', '621000', '中国,四川省,绵阳市', '104.742', '31.464', 'Mianyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510703', '涪城区', '510700', '涪城', '3', '816', '621000', '中国,四川省,绵阳市,涪城区', '104.757', '31.4552', 'Fucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510704', '游仙区', '510700', '游仙', '3', '816', '621022', '中国,四川省,绵阳市,游仙区', '104.771', '31.4657', 'Youxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510722', '三台县', '510700', '三台', '3', '816', '621100', '中国,四川省,绵阳市,三台县', '105.091', '31.0918', 'Santai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510723', '盐亭县', '510700', '盐亭', '3', '816', '621600', '中国,四川省,绵阳市,盐亭县', '105.39', '31.2218', 'Yanting', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510724', '安县', '510700', '安县', '3', '816', '622650', '中国,四川省,绵阳市,安县', '104.567', '31.5349', 'Anxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510725', '梓潼县', '510700', '梓潼', '3', '816', '622150', '中国,四川省,绵阳市,梓潼县', '105.162', '31.6359', 'Zitong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510726', '北川羌族自治县', '510700', '北川', '3', '816', '622750', '中国,四川省,绵阳市,北川羌族自治县', '104.464', '31.8329', 'Beichuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510727', '平武县', '510700', '平武', '3', '816', '622550', '中国,四川省,绵阳市,平武县', '104.529', '32.4079', 'Pingwu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510781', '江油市', '510700', '江油', '3', '816', '621700', '中国,四川省,绵阳市,江油市', '104.745', '31.7778', 'Jiangyou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510800', '广元市', '510000', '广元', '2', '839', '628000', '中国,四川省,广元市', '105.83', '32.4337', 'Guangyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510802', '利州区', '510800', '利州', '3', '839', '628017', '中国,四川省,广元市,利州区', '105.826', '32.4323', 'Lizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510811', '昭化区', '510800', '昭化', '3', '839', '628017', '中国,四川省,广元市,昭化区', '105.64', '32.3865', 'Zhaohua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510812', '朝天区', '510800', '朝天', '3', '839', '628017', '中国,四川省,广元市,朝天区', '105.893', '32.644', 'Chaotian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510821', '旺苍县', '510800', '旺苍', '3', '839', '628200', '中国,四川省,广元市,旺苍县', '106.29', '32.2285', 'Wangcang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510822', '青川县', '510800', '青川', '3', '839', '628100', '中国,四川省,广元市,青川县', '105.239', '32.5856', 'Qingchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510823', '剑阁县', '510800', '剑阁', '3', '839', '628300', '中国,四川省,广元市,剑阁县', '105.525', '32.2884', 'Jiange', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510824', '苍溪县', '510800', '苍溪', '3', '839', '628400', '中国,四川省,广元市,苍溪县', '105.936', '31.7321', 'Cangxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510900', '遂宁市', '510000', '遂宁', '2', '825', '629000', '中国,四川省,遂宁市', '105.571', '30.5133', 'Suining', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510903', '船山区', '510900', '船山', '3', '825', '629000', '中国,四川省,遂宁市,船山区', '105.581', '30.4999', 'Chuanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510904', '安居区', '510900', '安居', '3', '825', '629000', '中国,四川省,遂宁市,安居区', '105.464', '30.3578', 'Anju', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510921', '蓬溪县', '510900', '蓬溪', '3', '825', '629100', '中国,四川省,遂宁市,蓬溪县', '105.708', '30.7577', 'Pengxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510922', '射洪县', '510900', '射洪', '3', '825', '629200', '中国,四川省,遂宁市,射洪县', '105.389', '30.872', 'Shehong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('510923', '大英县', '510900', '大英', '3', '825', '629300', '中国,四川省,遂宁市,大英县', '105.243', '30.5943', 'Daying', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511000', '内江市', '510000', '内江', '2', '832', '641000', '中国,四川省,内江市', '105.066', '29.5871', 'Neijiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511002', '市中区', '511000', '市中区', '3', '832', '641000', '中国,四川省,内江市,市中区', '105.068', '29.5871', 'Shizhongqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511011', '东兴区', '511000', '东兴', '3', '832', '641100', '中国,四川省,内江市,东兴区', '105.076', '29.5928', 'Dongxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511024', '威远县', '511000', '威远', '3', '832', '642450', '中国,四川省,内江市,威远县', '104.67', '29.5282', 'Weiyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511025', '资中县', '511000', '资中', '3', '832', '641200', '中国,四川省,内江市,资中县', '104.852', '29.7641', 'Zizhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511028', '隆昌县', '511000', '隆昌', '3', '832', '642150', '中国,四川省,内江市,隆昌县', '105.287', '29.3394', 'Longchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511100', '乐山市', '510000', '乐山', '2', '833', '614000', '中国,四川省,乐山市', '103.761', '29.582', 'Leshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511102', '市中区', '511100', '市中区', '3', '833', '614000', '中国,四川省,乐山市,市中区', '103.762', '29.5554', 'Shizhongqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511111', '沙湾区', '511100', '沙湾', '3', '833', '614900', '中国,四川省,乐山市,沙湾区', '103.549', '29.4119', 'Shawan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511112', '五通桥区', '511100', '五通桥', '3', '833', '614800', '中国,四川省,乐山市,五通桥区', '103.823', '29.4034', 'Wutongqiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511113', '金口河区', '511100', '金口河', '3', '833', '614700', '中国,四川省,乐山市,金口河区', '103.079', '29.2458', 'Jinkouhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511123', '犍为县', '511100', '犍为', '3', '833', '614400', '中国,四川省,乐山市,犍为县', '103.95', '29.2097', 'Qianwei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511124', '井研县', '511100', '井研', '3', '833', '613100', '中国,四川省,乐山市,井研县', '104.07', '29.6523', 'Jingyan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511126', '夹江县', '511100', '夹江', '3', '833', '614100', '中国,四川省,乐山市,夹江县', '103.572', '29.7387', 'Jiajiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511129', '沐川县', '511100', '沐川', '3', '833', '614500', '中国,四川省,乐山市,沐川县', '103.904', '28.9565', 'Muchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511132', '峨边彝族自治县', '511100', '峨边', '3', '833', '614300', '中国,四川省,乐山市,峨边彝族自治县', '103.263', '29.23', 'Ebian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511133', '马边彝族自治县', '511100', '马边', '3', '833', '614600', '中国,四川省,乐山市,马边彝族自治县', '103.546', '28.8359', 'Mabian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511181', '峨眉山市', '511100', '峨眉山', '3', '833', '614200', '中国,四川省,乐山市,峨眉山市', '103.484', '29.6012', 'Emeishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511300', '南充市', '510000', '南充', '2', '817', '637000', '中国,四川省,南充市', '106.083', '30.7953', 'Nanchong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511302', '顺庆区', '511300', '顺庆', '3', '817', '637000', '中国,四川省,南充市,顺庆区', '106.092', '30.7964', 'Shunqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511303', '高坪区', '511300', '高坪', '3', '817', '637100', '中国,四川省,南充市,高坪区', '106.119', '30.7816', 'Gaoping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511304', '嘉陵区', '511300', '嘉陵', '3', '817', '637100', '中国,四川省,南充市,嘉陵区', '106.071', '30.7585', 'Jialing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511321', '南部县', '511300', '南部', '3', '817', '637300', '中国,四川省,南充市,南部县', '106.067', '31.3545', 'Nanbu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511322', '营山县', '511300', '营山', '3', '817', '637700', '中国,四川省,南充市,营山县', '106.566', '31.0775', 'Yingshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511323', '蓬安县', '511300', '蓬安', '3', '817', '637800', '中国,四川省,南充市,蓬安县', '106.413', '31.0296', 'Pengan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511324', '仪陇县', '511300', '仪陇', '3', '817', '637600', '中国,四川省,南充市,仪陇县', '106.3', '31.2763', 'Yilong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511325', '西充县', '511300', '西充', '3', '817', '637200', '中国,四川省,南充市,西充县', '105.9', '30.9969', 'Xichong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511381', '阆中市', '511300', '阆中', '3', '817', '637400', '中国,四川省,南充市,阆中市', '106.005', '31.5583', 'Langzhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511400', '眉山市', '510000', '眉山', '2', '28', '620020', '中国,四川省,眉山市', '103.832', '30.0483', 'Meishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511402', '东坡区', '511400', '东坡', '3', '28', '620010', '中国,四川省,眉山市,东坡区', '103.832', '30.0422', 'Dongpo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511403', '彭山区', '511400', '彭山', '3', '28', '620860', '中国,四川省,眉山市,彭山区', '103.873', '30.1928', 'Pengshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511421', '仁寿县', '511400', '仁寿', '3', '28', '620500', '中国,四川省,眉山市,仁寿县', '104.134', '29.996', 'Renshou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511423', '洪雅县', '511400', '洪雅', '3', '28', '620360', '中国,四川省,眉山市,洪雅县', '103.373', '29.9066', 'Hongya', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511424', '丹棱县', '511400', '丹棱', '3', '28', '620200', '中国,四川省,眉山市,丹棱县', '103.513', '30.0156', 'Danling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511425', '青神县', '511400', '青神', '3', '28', '620460', '中国,四川省,眉山市,青神县', '103.848', '29.8323', 'Qingshen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511500', '宜宾市', '510000', '宜宾', '2', '831', '644000', '中国,四川省,宜宾市', '104.631', '28.7602', 'Yibin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511502', '翠屏区', '511500', '翠屏', '3', '831', '644000', '中国,四川省,宜宾市,翠屏区', '104.62', '28.7657', 'Cuiping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511503', '南溪区', '511500', '南溪', '3', '831', '644100', '中国,四川省,宜宾市,南溪区', '104.981', '28.8398', 'Nanxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511521', '宜宾县', '511500', '宜宾', '3', '831', '644600', '中国,四川省,宜宾市,宜宾县', '104.533', '28.69', 'Yibin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511523', '江安县', '511500', '江安', '3', '831', '644200', '中国,四川省,宜宾市,江安县', '105.067', '28.7239', 'Jiangan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511524', '长宁县', '511500', '长宁', '3', '831', '644300', '中国,四川省,宜宾市,长宁县', '104.925', '28.5778', 'Changning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511525', '高县', '511500', '高县', '3', '831', '645150', '中国,四川省,宜宾市,高县', '104.518', '28.4362', 'Gaoxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511526', '珙县', '511500', '珙县', '3', '831', '644500', '中国,四川省,宜宾市,珙县', '104.714', '28.4451', 'Gongxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511527', '筠连县', '511500', '筠连', '3', '831', '645250', '中国,四川省,宜宾市,筠连县', '104.512', '28.1649', 'Junlian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511528', '兴文县', '511500', '兴文', '3', '831', '644400', '中国,四川省,宜宾市,兴文县', '105.237', '28.3044', 'Xingwen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511529', '屏山县', '511500', '屏山', '3', '831', '645350', '中国,四川省,宜宾市,屏山县', '104.163', '28.6437', 'Pingshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511600', '广安市', '510000', '广安', '2', '826', '638000', '中国,四川省,广安市', '106.633', '30.4564', 'Guangan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511602', '广安区', '511600', '广安', '3', '826', '638000', '中国,四川省,广安市,广安区', '106.642', '30.4739', 'Guangan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511603', '前锋区', '511600', '前锋', '3', '826', '638019', '中国,四川省,广安市,前锋区', '106.894', '30.4946', 'Qianfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511621', '岳池县', '511600', '岳池', '3', '826', '638300', '中国,四川省,广安市,岳池县', '106.441', '30.5392', 'Yuechi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511622', '武胜县', '511600', '武胜', '3', '826', '638400', '中国,四川省,广安市,武胜县', '106.296', '30.3493', 'Wusheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511623', '邻水县', '511600', '邻水', '3', '826', '638500', '中国,四川省,广安市,邻水县', '106.93', '30.3345', 'Linshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511681', '华蓥市', '511600', '华蓥', '3', '826', '638600', '中国,四川省,广安市,华蓥市', '106.785', '30.3901', 'Huaying', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511700', '达州市', '510000', '达州', '2', '818', '635000', '中国,四川省,达州市', '107.502', '31.2095', 'Dazhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511702', '通川区', '511700', '通川', '3', '818', '635000', '中国,四川省,达州市,通川区', '107.505', '31.2147', 'Tongchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511703', '达川区', '511700', '达川', '3', '818', '635000', '中国,四川省,达州市,达川区', '107.502', '31.2095', 'Dachuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511722', '宣汉县', '511700', '宣汉', '3', '818', '636150', '中国,四川省,达州市,宣汉县', '107.728', '31.3552', 'Xuanhan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511723', '开江县', '511700', '开江', '3', '818', '636250', '中国,四川省,达州市,开江县', '107.869', '31.0841', 'Kaijiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511724', '大竹县', '511700', '大竹', '3', '818', '635100', '中国,四川省,达州市,大竹县', '107.209', '30.7415', 'Dazhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511725', '渠县', '511700', '渠县', '3', '818', '635200', '中国,四川省,达州市,渠县', '106.974', '30.8376', 'Quxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511781', '万源市', '511700', '万源', '3', '818', '636350', '中国,四川省,达州市,万源市', '108.036', '32.0809', 'Wanyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511800', '雅安市', '510000', '雅安', '2', '835', '625000', '中国,四川省,雅安市', '103.001', '29.9877', 'Yaan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511802', '雨城区', '511800', '雨城', '3', '835', '625000', '中国,四川省,雅安市,雨城区', '103.033', '30.0053', 'Yucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511803', '名山区', '511800', '名山', '3', '835', '625100', '中国,四川省,雅安市,名山区', '103.112', '30.0847', 'Mingshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511822', '荥经县', '511800', '荥经', '3', '835', '625200', '中国,四川省,雅安市,荥经县', '102.847', '29.794', 'Yingjing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511823', '汉源县', '511800', '汉源', '3', '835', '625300', '中国,四川省,雅安市,汉源县', '102.678', '29.3517', 'Hanyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511824', '石棉县', '511800', '石棉', '3', '835', '625400', '中国,四川省,雅安市,石棉县', '102.359', '29.228', 'Shimian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511825', '天全县', '511800', '天全', '3', '835', '625500', '中国,四川省,雅安市,天全县', '102.759', '30.0675', 'Tianquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511826', '芦山县', '511800', '芦山', '3', '835', '625600', '中国,四川省,雅安市,芦山县', '102.928', '30.1437', 'Lushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511827', '宝兴县', '511800', '宝兴', '3', '835', '625700', '中国,四川省,雅安市,宝兴县', '102.816', '30.3684', 'Baoxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511900', '巴中市', '510000', '巴中', '2', '827', '636000', '中国,四川省,巴中市', '106.754', '31.8588', 'Bazhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511902', '巴州区', '511900', '巴州', '3', '827', '636001', '中国,四川省,巴中市,巴州区', '106.769', '31.8512', 'Bazhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511903', '恩阳区', '511900', '恩阳', '3', '827', '636064', '中国,四川省,巴中市,恩阳区', '106.754', '31.8588', 'Enyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511921', '通江县', '511900', '通江', '3', '827', '636700', '中国,四川省,巴中市,通江县', '107.244', '31.9129', 'Tongjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511922', '南江县', '511900', '南江', '3', '827', '636600', '中国,四川省,巴中市,南江县', '106.842', '32.3534', 'Nanjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('511923', '平昌县', '511900', '平昌', '3', '827', '636400', '中国,四川省,巴中市,平昌县', '107.104', '31.5594', 'Pingchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('512000', '资阳市', '510000', '资阳', '2', '28', '641300', '中国,四川省,资阳市', '104.642', '30.1222', 'Ziyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('512002', '雁江区', '512000', '雁江', '3', '28', '641300', '中国,四川省,资阳市,雁江区', '104.652', '30.1152', 'Yanjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('512021', '安岳县', '512000', '安岳', '3', '28', '642350', '中国,四川省,资阳市,安岳县', '105.336', '30.0979', 'Anyue', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('512022', '乐至县', '512000', '乐至', '3', '28', '641500', '中国,四川省,资阳市,乐至县', '105.032', '30.2723', 'Lezhi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('512081', '简阳市', '512000', '简阳', '3', '28', '641400', '中国,四川省,资阳市,简阳市', '104.549', '30.3904', 'Jianyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513200', '阿坝藏族羌族自治州', '510000', '阿坝', '2', '837', '624000', '中国,四川省,阿坝藏族羌族自治州', '102.221', '31.8998', 'Aba', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513221', '汶川县', '513200', '汶川', '3', '837', '623000', '中国,四川省,阿坝藏族羌族自治州,汶川县', '103.591', '31.4733', 'Wenchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513222', '理县', '513200', '理县', '3', '837', '623100', '中国,四川省,阿坝藏族羌族自治州,理县', '103.172', '31.436', 'Lixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513223', '茂县', '513200', '茂县', '3', '837', '623200', '中国,四川省,阿坝藏族羌族自治州,茂县', '103.854', '31.682', 'Maoxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513224', '松潘县', '513200', '松潘', '3', '837', '623300', '中国,四川省,阿坝藏族羌族自治州,松潘县', '103.599', '32.6387', 'Songpan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513225', '九寨沟县', '513200', '九寨沟', '3', '837', '623400', '中国,四川省,阿坝藏族羌族自治州,九寨沟县', '104.237', '33.2632', 'Jiuzhaigou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513226', '金川县', '513200', '金川', '3', '837', '624100', '中国,四川省,阿坝藏族羌族自治州,金川县', '102.066', '31.4762', 'Jinchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513227', '小金县', '513200', '小金', '3', '837', '624200', '中国,四川省,阿坝藏族羌族自治州,小金县', '102.365', '30.9993', 'Xiaojin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513228', '黑水县', '513200', '黑水', '3', '837', '623500', '中国,四川省,阿坝藏族羌族自治州,黑水县', '102.992', '32.0618', 'Heishui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513229', '马尔康县', '513200', '马尔康', '3', '837', '624000', '中国,四川省,阿坝藏族羌族自治州,马尔康县', '102.206', '31.9058', 'Maerkang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513230', '壤塘县', '513200', '壤塘', '3', '837', '624300', '中国,四川省,阿坝藏族羌族自治州,壤塘县', '100.978', '32.2658', 'Rangtang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513231', '阿坝县', '513200', '阿坝', '3', '837', '624600', '中国,四川省,阿坝藏族羌族自治州,阿坝县', '101.706', '32.903', 'Aba', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513232', '若尔盖县', '513200', '若尔盖', '3', '837', '624500', '中国,四川省,阿坝藏族羌族自治州,若尔盖县', '102.96', '33.5743', 'Ruoergai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513233', '红原县', '513200', '红原', '3', '837', '624400', '中国,四川省,阿坝藏族羌族自治州,红原县', '102.545', '32.7899', 'Hongyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513300', '甘孜藏族自治州', '510000', '甘孜', '2', '836', '626000', '中国,四川省,甘孜藏族自治州', '101.964', '30.0507', 'Garze', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513321', '康定县', '513300', '康定', '3', '836', '626000', '中国,四川省,甘孜藏族自治州,康定县', '101.965', '30.0553', 'Kangding', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513322', '泸定县', '513300', '泸定', '3', '836', '626100', '中国,四川省,甘孜藏族自治州,泸定县', '102.235', '29.9147', 'Luding', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513323', '丹巴县', '513300', '丹巴', '3', '836', '626300', '中国,四川省,甘孜藏族自治州,丹巴县', '101.884', '30.8766', 'Danba', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513324', '九龙县', '513300', '九龙', '3', '836', '626200', '中国,四川省,甘孜藏族自治州,九龙县', '101.508', '29.0009', 'Jiulong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513325', '雅江县', '513300', '雅江', '3', '836', '627450', '中国,四川省,甘孜藏族自治州,雅江县', '101.015', '30.0328', 'Yajiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513326', '道孚县', '513300', '道孚', '3', '836', '626400', '中国,四川省,甘孜藏族自治州,道孚县', '101.126', '30.9805', 'Daofu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513327', '炉霍县', '513300', '炉霍', '3', '836', '626500', '中国,四川省,甘孜藏族自治州,炉霍县', '100.677', '31.3917', 'Luhuo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513328', '甘孜县', '513300', '甘孜', '3', '836', '626700', '中国,四川省,甘孜藏族自治州,甘孜县', '99.9931', '31.6267', 'Ganzi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513329', '新龙县', '513300', '新龙', '3', '836', '626800', '中国,四川省,甘孜藏族自治州,新龙县', '100.312', '30.9407', 'Xinlong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513330', '德格县', '513300', '德格', '3', '836', '627250', '中国,四川省,甘孜藏族自治州,德格县', '98.5808', '31.8062', 'Dege', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513331', '白玉县', '513300', '白玉', '3', '836', '627150', '中国,四川省,甘孜藏族自治州,白玉县', '98.8257', '31.209', 'Baiyu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513332', '石渠县', '513300', '石渠', '3', '836', '627350', '中国,四川省,甘孜藏族自治州,石渠县', '98.1016', '32.9788', 'Shiqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513333', '色达县', '513300', '色达', '3', '836', '626600', '中国,四川省,甘孜藏族自治州,色达县', '100.332', '32.2684', 'Seda', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513334', '理塘县', '513300', '理塘', '3', '836', '627550', '中国,四川省,甘孜藏族自治州,理塘县', '100.27', '29.9967', 'Litang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513335', '巴塘县', '513300', '巴塘', '3', '836', '627650', '中国,四川省,甘孜藏族自治州,巴塘县', '99.1041', '30.0042', 'Batang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513336', '乡城县', '513300', '乡城', '3', '836', '627850', '中国,四川省,甘孜藏族自治州,乡城县', '99.7994', '28.9355', 'Xiangcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513337', '稻城县', '513300', '稻城', '3', '836', '627750', '中国,四川省,甘孜藏族自治州,稻城县', '100.298', '29.0379', 'Daocheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513338', '得荣县', '513300', '得荣', '3', '836', '627950', '中国,四川省,甘孜藏族自治州,得荣县', '99.2863', '28.713', 'Derong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513400', '凉山彝族自治州', '510000', '凉山', '2', '834', '615000', '中国,四川省,凉山彝族自治州', '102.259', '27.8868', 'Liangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513401', '西昌市', '513400', '西昌', '3', '835', '615000', '中国,四川省,凉山彝族自治州,西昌市', '102.264', '27.8952', 'Xichang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513422', '木里藏族自治县', '513400', '木里', '3', '851', '615800', '中国,四川省,凉山彝族自治州,木里藏族自治县', '101.28', '27.9287', 'Muli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513423', '盐源县', '513400', '盐源', '3', '836', '615700', '中国,四川省,凉山彝族自治州,盐源县', '101.51', '27.4218', 'Yanyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513424', '德昌县', '513400', '德昌', '3', '837', '615500', '中国,四川省,凉山彝族自治州,德昌县', '102.18', '27.4048', 'Dechang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513425', '会理县', '513400', '会理', '3', '838', '615100', '中国,四川省,凉山彝族自治州,会理县', '102.245', '26.6563', 'Huili', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513426', '会东县', '513400', '会东', '3', '839', '615200', '中国,四川省,凉山彝族自治州,会东县', '102.578', '26.6343', 'Huidong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513427', '宁南县', '513400', '宁南', '3', '840', '615400', '中国,四川省,凉山彝族自治州,宁南县', '102.761', '27.0657', 'Ningnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513428', '普格县', '513400', '普格', '3', '841', '615300', '中国,四川省,凉山彝族自治州,普格县', '102.541', '27.3748', 'Puge', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513429', '布拖县', '513400', '布拖', '3', '842', '616350', '中国,四川省,凉山彝族自治州,布拖县', '102.812', '27.7079', 'Butuo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513430', '金阳县', '513400', '金阳', '3', '843', '616250', '中国,四川省,凉山彝族自治州,金阳县', '103.248', '27.697', 'Jinyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513431', '昭觉县', '513400', '昭觉', '3', '844', '616150', '中国,四川省,凉山彝族自治州,昭觉县', '102.847', '28.0116', 'Zhaojue', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513432', '喜德县', '513400', '喜德', '3', '845', '616750', '中国,四川省,凉山彝族自治州,喜德县', '102.413', '28.3074', 'Xide', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513433', '冕宁县', '513400', '冕宁', '3', '846', '615600', '中国,四川省,凉山彝族自治州,冕宁县', '102.171', '28.5516', 'Mianning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513434', '越西县', '513400', '越西', '3', '847', '616650', '中国,四川省,凉山彝族自治州,越西县', '102.508', '28.6413', 'Yuexi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513435', '甘洛县', '513400', '甘洛', '3', '848', '616850', '中国,四川省,凉山彝族自治州,甘洛县', '102.772', '28.9662', 'Ganluo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513436', '美姑县', '513400', '美姑', '3', '849', '616450', '中国,四川省,凉山彝族自治州,美姑县', '103.131', '28.326', 'Meigu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('513437', '雷波县', '513400', '雷波', '3', '850', '616550', '中国,四川省,凉山彝族自治州,雷波县', '103.573', '28.2641', 'Leibo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520000', '贵州省', '100000', '贵州', '1', '0', '0', '中国,贵州省', '106.713', '26.5783', 'Guizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520100', '贵阳市', '520000', '贵阳', '2', '851', '550001', '中国,贵州省,贵阳市', '106.713', '26.5783', 'Guiyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520102', '南明区', '520100', '南明', '3', '851', '550001', '中国,贵州省,贵阳市,南明区', '106.715', '26.5682', 'Nanming', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520103', '云岩区', '520100', '云岩', '3', '851', '550001', '中国,贵州省,贵阳市,云岩区', '106.725', '26.6048', 'Yunyan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520111', '花溪区', '520100', '花溪', '3', '851', '550025', '中国,贵州省,贵阳市,花溪区', '106.677', '26.4334', 'Huaxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520112', '乌当区', '520100', '乌当', '3', '851', '550018', '中国,贵州省,贵阳市,乌当区', '106.752', '26.6302', 'Wudang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520113', '白云区', '520100', '白云', '3', '851', '550014', '中国,贵州省,贵阳市,白云区', '106.631', '26.6828', 'Baiyun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520115', '观山湖区', '520100', '观山湖', '3', '851', '550009', '中国,贵州省,贵阳市,观山湖区', '106.625', '26.6182', 'Guanshanhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520121', '开阳县', '520100', '开阳', '3', '851', '550300', '中国,贵州省,贵阳市,开阳县', '106.969', '27.0553', 'Kaiyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520122', '息烽县', '520100', '息烽', '3', '851', '551100', '中国,贵州省,贵阳市,息烽县', '106.738', '27.0935', 'Xifeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520123', '修文县', '520100', '修文', '3', '851', '550200', '中国,贵州省,贵阳市,修文县', '106.595', '26.8378', 'Xiuwen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520181', '清镇市', '520100', '清镇', '3', '851', '551400', '中国,贵州省,贵阳市,清镇市', '106.469', '26.5526', 'Qingzhen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520200', '六盘水市', '520000', '六盘水', '2', '858', '553400', '中国,贵州省,六盘水市', '104.847', '26.5846', 'Liupanshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520201', '钟山区', '520200', '钟山', '3', '858', '553000', '中国,贵州省,六盘水市,钟山区', '104.878', '26.577', 'Zhongshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520203', '六枝特区', '520200', '六枝', '3', '858', '553400', '中国,贵州省,六盘水市,六枝特区', '105.481', '26.2012', 'Liuzhi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520221', '水城县', '520200', '水城', '3', '858', '553000', '中国,贵州省,六盘水市,水城县', '104.958', '26.5478', 'Shuicheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520222', '盘县', '520200', '盘县', '3', '858', '561601', '中国,贵州省,六盘水市,盘县', '104.471', '25.7136', 'Panxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520300', '遵义市', '520000', '遵义', '2', '852', '563000', '中国,贵州省,遵义市', '106.937', '27.7066', 'Zunyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520302', '红花岗区', '520300', '红花岗', '3', '852', '563000', '中国,贵州省,遵义市,红花岗区', '106.894', '27.6447', 'Honghuagang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520303', '汇川区', '520300', '汇川', '3', '852', '563000', '中国,贵州省,遵义市,汇川区', '106.939', '27.7062', 'Huichuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520321', '遵义县', '520300', '遵义', '3', '852', '563100', '中国,贵州省,遵义市,遵义县', '106.833', '27.5377', 'Zunyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520322', '桐梓县', '520300', '桐梓', '3', '852', '563200', '中国,贵州省,遵义市,桐梓县', '106.826', '28.1381', 'Tongzi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520323', '绥阳县', '520300', '绥阳', '3', '852', '563300', '中国,贵州省,遵义市,绥阳县', '107.191', '27.947', 'Suiyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520324', '正安县', '520300', '正安', '3', '852', '563400', '中国,贵州省,遵义市,正安县', '107.444', '28.5512', 'Zhengan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520325', '道真仡佬族苗族自治县', '520300', '道真', '3', '852', '563500', '中国,贵州省,遵义市,道真仡佬族苗族自治县', '107.612', '28.864', 'Daozhen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520326', '务川仡佬族苗族自治县', '520300', '务川', '3', '852', '564300', '中国,贵州省,遵义市,务川仡佬族苗族自治县', '107.889', '28.5223', 'Wuchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520327', '凤冈县', '520300', '凤冈', '3', '852', '564200', '中国,贵州省,遵义市,凤冈县', '107.717', '27.9546', 'Fenggang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520328', '湄潭县', '520300', '湄潭', '3', '852', '564100', '中国,贵州省,遵义市,湄潭县', '107.488', '27.7668', 'Meitan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520329', '余庆县', '520300', '余庆', '3', '852', '564400', '中国,贵州省,遵义市,余庆县', '107.888', '27.2253', 'Yuqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520330', '习水县', '520300', '习水', '3', '852', '564600', '中国,贵州省,遵义市,习水县', '106.213', '28.3198', 'Xishui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520381', '赤水市', '520300', '赤水', '3', '852', '564700', '中国,贵州省,遵义市,赤水市', '105.698', '28.5892', 'Chishui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520382', '仁怀市', '520300', '仁怀', '3', '852', '564500', '中国,贵州省,遵义市,仁怀市', '106.402', '27.7923', 'Renhuai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520400', '安顺市', '520000', '安顺', '2', '853', '561000', '中国,贵州省,安顺市', '105.932', '26.2455', 'Anshun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520402', '西秀区', '520400', '西秀', '3', '853', '561000', '中国,贵州省,安顺市,西秀区', '105.966', '26.2449', 'Xixiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520421', '平坝区', '520400', '平坝', '3', '853', '561100', '中国,贵州省,安顺市,平坝区', '106.257', '26.4054', 'Pingba', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520422', '普定县', '520400', '普定', '3', '853', '562100', '中国,贵州省,安顺市,普定县', '105.743', '26.3014', 'Puding', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520423', '镇宁布依族苗族自治县', '520400', '镇宁', '3', '853', '561200', '中国,贵州省,安顺市,镇宁布依族苗族自治县', '105.765', '26.0553', 'Zhenning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520424', '关岭布依族苗族自治县', '520400', '关岭', '3', '853', '561300', '中国,贵州省,安顺市,关岭布依族苗族自治县', '105.619', '25.9425', 'Guanling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520425', '紫云苗族布依族自治县', '520400', '紫云', '3', '853', '550800', '中国,贵州省,安顺市,紫云苗族布依族自治县', '106.084', '25.7526', 'Ziyun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520500', '毕节市', '520000', '毕节', '2', '857', '551700', '中国,贵州省,毕节市', '105.285', '27.3017', 'Bijie', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520502', '七星关区', '520500', '七星关', '3', '857', '551700', '中国,贵州省,毕节市,七星关区', '104.95', '27.1536', 'Qixingguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520521', '大方县', '520500', '大方', '3', '857', '551600', '中国,贵州省,毕节市,大方县', '105.609', '27.1435', 'Dafang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520522', '黔西县', '520500', '黔西', '3', '857', '551500', '中国,贵州省,毕节市,黔西县', '106.038', '27.0249', 'Qianxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520523', '金沙县', '520500', '金沙', '3', '857', '551800', '中国,贵州省,毕节市,金沙县', '106.222', '27.4597', 'Jinsha', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520524', '织金县', '520500', '织金', '3', '857', '552100', '中国,贵州省,毕节市,织金县', '105.769', '26.6685', 'Zhijin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520525', '纳雍县', '520500', '纳雍', '3', '857', '553300', '中国,贵州省,毕节市,纳雍县', '105.375', '26.7699', 'Nayong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520526', '威宁彝族回族苗族自治县', '520500', '威宁', '3', '857', '553100', '中国,贵州省,毕节市,威宁彝族回族苗族自治县', '104.287', '26.8591', 'Weining', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520527', '赫章县', '520500', '赫章', '3', '857', '553200', '中国,贵州省,毕节市,赫章县', '104.726', '27.1192', 'Hezhang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520600', '铜仁市', '520000', '铜仁', '2', '856', '554300', '中国,贵州省,铜仁市', '109.192', '27.7183', 'Tongren', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520602', '碧江区', '520600', '碧江', '3', '856', '554300', '中国,贵州省,铜仁市,碧江区', '109.192', '27.7183', 'Bijiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520603', '万山区', '520600', '万山', '3', '856', '554200', '中国,贵州省,铜仁市,万山区', '109.212', '27.519', 'Wanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520621', '江口县', '520600', '江口', '3', '856', '554400', '中国,贵州省,铜仁市,江口县', '108.848', '27.6919', 'Jiangkou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520622', '玉屏侗族自治县', '520600', '玉屏', '3', '856', '554004', '中国,贵州省,铜仁市,玉屏侗族自治县', '108.918', '27.238', 'Yuping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520623', '石阡县', '520600', '石阡', '3', '856', '555100', '中国,贵州省,铜仁市,石阡县', '108.23', '27.5194', 'Shiqian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520624', '思南县', '520600', '思南', '3', '856', '565100', '中国,贵州省,铜仁市,思南县', '108.256', '27.9413', 'Sinan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520625', '印江土家族苗族自治县', '520600', '印江', '3', '856', '555200', '中国,贵州省,铜仁市,印江土家族苗族自治县', '108.406', '27.998', 'Yinjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520626', '德江县', '520600', '德江', '3', '856', '565200', '中国,贵州省,铜仁市,德江县', '108.117', '28.2609', 'Dejiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520627', '沿河土家族自治县', '520600', '沿河', '3', '856', '565300', '中国,贵州省,铜仁市,沿河土家族自治县', '108.496', '28.5605', 'Yuanhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('520628', '松桃苗族自治县', '520600', '松桃', '3', '856', '554100', '中国,贵州省,铜仁市,松桃苗族自治县', '109.203', '28.1654', 'Songtao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522300', '黔西南布依族苗族自治州', '520000', '黔西南', '2', '859', '562400', '中国,贵州省,黔西南布依族苗族自治州', '104.898', '25.0881', 'Qianxinan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522301', '兴义市', '522300', '兴义', '3', '859', '562400', '中国,贵州省,黔西南布依族苗族自治州,兴义市', '104.895', '25.0921', 'Xingyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522322', '兴仁县', '522300', '兴仁', '3', '859', '562300', '中国,贵州省,黔西南布依族苗族自治州,兴仁县', '105.187', '25.4328', 'Xingren', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522323', '普安县', '522300', '普安', '3', '859', '561500', '中国,贵州省,黔西南布依族苗族自治州,普安县', '104.955', '25.786', 'Puan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522324', '晴隆县', '522300', '晴隆', '3', '859', '561400', '中国,贵州省,黔西南布依族苗族自治州,晴隆县', '105.219', '25.8352', 'Qinglong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522325', '贞丰县', '522300', '贞丰', '3', '859', '562200', '中国,贵州省,黔西南布依族苗族自治州,贞丰县', '105.655', '25.3846', 'Zhenfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522326', '望谟县', '522300', '望谟', '3', '859', '552300', '中国,贵州省,黔西南布依族苗族自治州,望谟县', '106.1', '25.1782', 'Wangmo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522327', '册亨县', '522300', '册亨', '3', '859', '552200', '中国,贵州省,黔西南布依族苗族自治州,册亨县', '105.812', '24.9838', 'Ceheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522328', '安龙县', '522300', '安龙', '3', '859', '552400', '中国,贵州省,黔西南布依族苗族自治州,安龙县', '105.443', '25.0982', 'Anlong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522600', '黔东南苗族侗族自治州', '520000', '黔东南', '2', '855', '556000', '中国,贵州省,黔东南苗族侗族自治州', '107.977', '26.5834', 'Qiandongnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522601', '凯里市', '522600', '凯里', '3', '855', '556000', '中国,贵州省,黔东南苗族侗族自治州,凯里市', '107.981', '26.5669', 'Kaili', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522622', '黄平县', '522600', '黄平', '3', '855', '556100', '中国,贵州省,黔东南苗族侗族自治州,黄平县', '107.902', '26.8957', 'Huangping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522623', '施秉县', '522600', '施秉', '3', '855', '556200', '中国,贵州省,黔东南苗族侗族自治州,施秉县', '108.126', '27.035', 'Shibing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522624', '三穗县', '522600', '三穗', '3', '855', '556500', '中国,贵州省,黔东南苗族侗族自治州,三穗县', '108.671', '26.9477', 'Sansui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522625', '镇远县', '522600', '镇远', '3', '855', '557700', '中国,贵州省,黔东南苗族侗族自治州,镇远县', '108.427', '27.0493', 'Zhenyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522626', '岑巩县', '522600', '岑巩', '3', '855', '557800', '中国,贵州省,黔东南苗族侗族自治州,岑巩县', '108.819', '27.1754', 'Cengong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522627', '天柱县', '522600', '天柱', '3', '855', '556600', '中国,贵州省,黔东南苗族侗族自治州,天柱县', '109.207', '26.9078', 'Tianzhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522628', '锦屏县', '522600', '锦屏', '3', '855', '556700', '中国,贵州省,黔东南苗族侗族自治州,锦屏县', '109.2', '26.6763', 'Jinping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522629', '剑河县', '522600', '剑河', '3', '855', '556400', '中国,贵州省,黔东南苗族侗族自治州,剑河县', '108.591', '26.6525', 'Jianhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522630', '台江县', '522600', '台江', '3', '855', '556300', '中国,贵州省,黔东南苗族侗族自治州,台江县', '108.318', '26.6692', 'Taijiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522631', '黎平县', '522600', '黎平', '3', '855', '557300', '中国,贵州省,黔东南苗族侗族自治州,黎平县', '109.136', '26.2311', 'Liping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522632', '榕江县', '522600', '榕江', '3', '855', '557200', '中国,贵州省,黔东南苗族侗族自治州,榕江县', '108.521', '25.9242', 'Rongjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522633', '从江县', '522600', '从江', '3', '855', '557400', '中国,贵州省,黔东南苗族侗族自治州,从江县', '108.905', '25.7542', 'Congjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522634', '雷山县', '522600', '雷山', '3', '855', '557100', '中国,贵州省,黔东南苗族侗族自治州,雷山县', '108.077', '26.3839', 'Leishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522635', '麻江县', '522600', '麻江', '3', '855', '557600', '中国,贵州省,黔东南苗族侗族自治州,麻江县', '107.592', '26.4923', 'Majiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522636', '丹寨县', '522600', '丹寨', '3', '855', '557500', '中国,贵州省,黔东南苗族侗族自治州,丹寨县', '107.797', '26.1982', 'Danzhai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522700', '黔南布依族苗族自治州', '520000', '黔南', '2', '854', '558000', '中国,贵州省,黔南布依族苗族自治州', '107.517', '26.2582', 'Qiannan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522701', '都匀市', '522700', '都匀', '3', '854', '558000', '中国,贵州省,黔南布依族苗族自治州,都匀市', '107.519', '26.2594', 'Duyun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522702', '福泉市', '522700', '福泉', '3', '854', '550500', '中国,贵州省,黔南布依族苗族自治州,福泉市', '107.517', '26.6799', 'Fuquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522722', '荔波县', '522700', '荔波', '3', '854', '558400', '中国,贵州省,黔南布依族苗族自治州,荔波县', '107.886', '25.4139', 'Libo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522723', '贵定县', '522700', '贵定', '3', '854', '551300', '中国,贵州省,黔南布依族苗族自治州,贵定县', '107.237', '26.5781', 'Guiding', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522725', '瓮安县', '522700', '瓮安', '3', '854', '550400', '中国,贵州省,黔南布依族苗族自治州,瓮安县', '107.476', '27.0681', 'Wengan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522726', '独山县', '522700', '独山', '3', '854', '558200', '中国,贵州省,黔南布依族苗族自治州,独山县', '107.541', '25.8245', 'Dushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522727', '平塘县', '522700', '平塘', '3', '854', '558300', '中国,贵州省,黔南布依族苗族自治州,平塘县', '107.324', '25.8329', 'Pingtang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522728', '罗甸县', '522700', '罗甸', '3', '854', '550100', '中国,贵州省,黔南布依族苗族自治州,罗甸县', '106.752', '25.4259', 'Luodian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522729', '长顺县', '522700', '长顺', '3', '854', '550700', '中国,贵州省,黔南布依族苗族自治州,长顺县', '106.452', '26.023', 'Changshun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522730', '龙里县', '522700', '龙里', '3', '854', '551200', '中国,贵州省,黔南布依族苗族自治州,龙里县', '106.977', '26.4508', 'Longli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522731', '惠水县', '522700', '惠水', '3', '854', '550600', '中国,贵州省,黔南布依族苗族自治州,惠水县', '106.659', '26.1339', 'Huishui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('522732', '三都水族自治县', '522700', '三都', '3', '854', '558100', '中国,贵州省,黔南布依族苗族自治州,三都水族自治县', '107.875', '25.9856', 'Sandu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530000', '云南省', '100000', '云南', '1', '0', '0', '中国,云南省', '102.712', '25.0406', 'Yunnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530100', '昆明市', '530000', '昆明', '2', '871', '650500', '中国,云南省,昆明市', '102.712', '25.0406', 'Kunming', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530102', '五华区', '530100', '五华', '3', '871', '650021', '中国,云南省,昆明市,五华区', '102.708', '25.0352', 'Wuhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530103', '盘龙区', '530100', '盘龙', '3', '871', '650051', '中国,云南省,昆明市,盘龙区', '102.72', '25.0405', 'Panlong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530111', '官渡区', '530100', '官渡', '3', '871', '650200', '中国,云南省,昆明市,官渡区', '102.744', '25.015', 'Guandu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530112', '西山区', '530100', '西山', '3', '871', '650118', '中国,云南省,昆明市,西山区', '102.665', '25.038', 'Xishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530113', '东川区', '530100', '东川', '3', '871', '654100', '中国,云南省,昆明市,东川区', '103.188', '26.083', 'Dongchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530114', '呈贡区', '530100', '呈贡', '3', '871', '650500', '中国,云南省,昆明市,呈贡区', '102.801', '24.8893', 'Chenggong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530122', '晋宁县', '530100', '晋宁', '3', '871', '650600', '中国,云南省,昆明市,晋宁县', '102.594', '24.6665', 'Jinning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530124', '富民县', '530100', '富民', '3', '871', '650400', '中国,云南省,昆明市,富民县', '102.498', '25.2212', 'Fumin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530125', '宜良县', '530100', '宜良', '3', '871', '652100', '中国,云南省,昆明市,宜良县', '103.141', '24.917', 'Yiliang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530126', '石林彝族自治县', '530100', '石林', '3', '871', '652200', '中国,云南省,昆明市,石林彝族自治县', '103.271', '24.759', 'Shilin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530127', '嵩明县', '530100', '嵩明', '3', '871', '651700', '中国,云南省,昆明市,嵩明县', '103.037', '25.3399', 'Songming', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530128', '禄劝彝族苗族自治县', '530100', '禄劝', '3', '871', '651500', '中国,云南省,昆明市,禄劝彝族苗族自治县', '102.467', '25.5539', 'Luquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530129', '寻甸回族彝族自治县', '530100', '寻甸', '3', '871', '655200', '中国,云南省,昆明市,寻甸回族彝族自治县', '103.256', '25.5596', 'Xundian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530181', '安宁市', '530100', '安宁', '3', '871', '650300', '中国,云南省,昆明市,安宁市', '102.47', '24.9165', 'Anning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530300', '曲靖市', '530000', '曲靖', '2', '874', '655000', '中国,云南省,曲靖市', '103.798', '25.5016', 'Qujing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530302', '麒麟区', '530300', '麒麟', '3', '874', '655000', '中国,云南省,曲靖市,麒麟区', '103.805', '25.4951', 'Qilin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530321', '马龙县', '530300', '马龙', '3', '874', '655100', '中国,云南省,曲靖市,马龙县', '103.579', '25.4252', 'Malong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530322', '陆良县', '530300', '陆良', '3', '874', '655600', '中国,云南省,曲靖市,陆良县', '103.666', '25.0233', 'Luliang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530323', '师宗县', '530300', '师宗', '3', '874', '655700', '中国,云南省,曲靖市,师宗县', '103.991', '24.8282', 'Shizong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530324', '罗平县', '530300', '罗平', '3', '874', '655800', '中国,云南省,曲靖市,罗平县', '104.309', '24.8844', 'Luoping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530325', '富源县', '530300', '富源', '3', '874', '655500', '中国,云南省,曲靖市,富源县', '104.254', '25.6659', 'Fuyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530326', '会泽县', '530300', '会泽', '3', '874', '654200', '中国,云南省,曲靖市,会泽县', '103.3', '26.4108', 'Huize', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530328', '沾益县', '530300', '沾益', '3', '874', '655331', '中国,云南省,曲靖市,沾益县', '103.821', '25.6071', 'Zhanyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530381', '宣威市', '530300', '宣威', '3', '874', '655400', '中国,云南省,曲靖市,宣威市', '104.104', '26.2173', 'Xuanwei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530400', '玉溪市', '530000', '玉溪', '2', '877', '653100', '中国,云南省,玉溪市', '102.544', '24.3505', 'Yuxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530402', '红塔区', '530400', '红塔', '3', '877', '653100', '中国,云南省,玉溪市,红塔区', '102.545', '24.3541', 'Hongta', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530421', '江川县', '530400', '江川', '3', '877', '652600', '中国,云南省,玉溪市,江川县', '102.754', '24.2886', 'Jiangchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530422', '澄江县', '530400', '澄江', '3', '877', '652500', '中国,云南省,玉溪市,澄江县', '102.908', '24.6738', 'Chengjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530423', '通海县', '530400', '通海', '3', '877', '652700', '中国,云南省,玉溪市,通海县', '102.766', '24.1136', 'Tonghai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530424', '华宁县', '530400', '华宁', '3', '877', '652800', '中国,云南省,玉溪市,华宁县', '102.928', '24.1926', 'Huaning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530425', '易门县', '530400', '易门', '3', '877', '651100', '中国,云南省,玉溪市,易门县', '102.164', '24.6712', 'Yimen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530426', '峨山彝族自治县', '530400', '峨山', '3', '877', '653200', '中国,云南省,玉溪市,峨山彝族自治县', '102.406', '24.169', 'Eshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530427', '新平彝族傣族自治县', '530400', '新平', '3', '877', '653400', '中国,云南省,玉溪市,新平彝族傣族自治县', '101.989', '24.0689', 'Xinping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530428', '元江哈尼族彝族傣族自治县', '530400', '元江', '3', '877', '653300', '中国,云南省,玉溪市,元江哈尼族彝族傣族自治县', '101.998', '23.5965', 'Yuanjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530500', '保山市', '530000', '保山', '2', '875', '678000', '中国,云南省,保山市', '99.1671', '25.1118', 'Baoshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530502', '隆阳区', '530500', '隆阳', '3', '875', '678000', '中国,云南省,保山市,隆阳区', '99.1633', '25.1116', 'Longyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530521', '施甸县', '530500', '施甸', '3', '875', '678200', '中国,云南省,保山市,施甸县', '99.1877', '24.7242', 'Shidian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530522', '腾冲县', '530500', '腾冲', '3', '875', '679100', '中国,云南省,保山市,腾冲县', '98.4941', '25.0254', 'Tengchong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530523', '龙陵县', '530500', '龙陵', '3', '875', '678300', '中国,云南省,保山市,龙陵县', '98.6902', '24.5875', 'Longling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530524', '昌宁县', '530500', '昌宁', '3', '875', '678100', '中国,云南省,保山市,昌宁县', '99.6036', '24.8276', 'Changning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530600', '昭通市', '530000', '昭通', '2', '870', '657000', '中国,云南省,昭通市', '103.717', '27.337', 'Zhaotong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530602', '昭阳区', '530600', '昭阳', '3', '870', '657000', '中国,云南省,昭通市,昭阳区', '103.707', '27.32', 'Zhaoyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530621', '鲁甸县', '530600', '鲁甸', '3', '870', '657100', '中国,云南省,昭通市,鲁甸县', '103.547', '27.1924', 'Ludian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530622', '巧家县', '530600', '巧家', '3', '870', '654600', '中国,云南省,昭通市,巧家县', '102.924', '26.9124', 'Qiaojia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530623', '盐津县', '530600', '盐津', '3', '870', '657500', '中国,云南省,昭通市,盐津县', '104.235', '28.1086', 'Yanjin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530624', '大关县', '530600', '大关', '3', '870', '657400', '中国,云南省,昭通市,大关县', '103.893', '27.7488', 'Daguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530625', '永善县', '530600', '永善', '3', '870', '657300', '中国,云南省,昭通市,永善县', '103.635', '28.2279', 'Yongshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530626', '绥江县', '530600', '绥江', '3', '870', '657700', '中国,云南省,昭通市,绥江县', '103.949', '28.5966', 'Suijiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530627', '镇雄县', '530600', '镇雄', '3', '870', '657200', '中国,云南省,昭通市,镇雄县', '104.873', '27.4398', 'Zhenxiong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530628', '彝良县', '530600', '彝良', '3', '870', '657600', '中国,云南省,昭通市,彝良县', '104.05', '27.6281', 'Yiliang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530629', '威信县', '530600', '威信', '3', '870', '657900', '中国,云南省,昭通市,威信县', '105.048', '27.8407', 'Weixin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530630', '水富县', '530600', '水富', '3', '870', '657800', '中国,云南省,昭通市,水富县', '104.416', '28.6299', 'Shuifu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530700', '丽江市', '530000', '丽江', '2', '888', '674100', '中国,云南省,丽江市', '100.233', '26.8721', 'Lijiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530702', '古城区', '530700', '古城', '3', '888', '674100', '中国,云南省,丽江市,古城区', '100.226', '26.877', 'Gucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530721', '玉龙纳西族自治县', '530700', '玉龙', '3', '888', '674100', '中国,云南省,丽江市,玉龙纳西族自治县', '100.237', '26.8215', 'Yulong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530722', '永胜县', '530700', '永胜', '3', '888', '674200', '中国,云南省,丽江市,永胜县', '100.747', '26.6859', 'Yongsheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530723', '华坪县', '530700', '华坪', '3', '888', '674800', '中国,云南省,丽江市,华坪县', '101.266', '26.6297', 'Huaping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530724', '宁蒗彝族自治县', '530700', '宁蒗', '3', '888', '674300', '中国,云南省,丽江市,宁蒗彝族自治县', '100.851', '27.2818', 'Ninglang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530800', '普洱市', '530000', '普洱', '2', '879', '665000', '中国,云南省,普洱市', '100.972', '22.7773', 'Puer', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530802', '思茅区', '530800', '思茅', '3', '879', '665000', '中国,云南省,普洱市,思茅区', '100.977', '22.7869', 'Simao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530821', '宁洱哈尼族彝族自治县', '530800', '宁洱', '3', '879', '665100', '中国,云南省,普洱市,宁洱哈尼族彝族自治县', '101.047', '23.0634', 'Ninger', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530822', '墨江哈尼族自治县', '530800', '墨江', '3', '879', '654800', '中国,云南省,普洱市,墨江哈尼族自治县', '101.692', '23.4321', 'Mojiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530823', '景东彝族自治县', '530800', '景东', '3', '879', '676200', '中国,云南省,普洱市,景东彝族自治县', '100.836', '24.4479', 'Jingdong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530824', '景谷傣族彝族自治县', '530800', '景谷', '3', '879', '666400', '中国,云南省,普洱市,景谷傣族彝族自治县', '100.703', '23.497', 'Jinggu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530825', '镇沅彝族哈尼族拉祜族自治县', '530800', '镇沅', '3', '879', '666500', '中国,云南省,普洱市,镇沅彝族哈尼族拉祜族自治县', '101.107', '24.0056', 'Zhenyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530826', '江城哈尼族彝族自治县', '530800', '江城', '3', '879', '665900', '中国,云南省,普洱市,江城哈尼族彝族自治县', '101.858', '22.5842', 'Jiangcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530827', '孟连傣族拉祜族佤族自治县', '530800', '孟连', '3', '879', '665800', '中国,云南省,普洱市,孟连傣族拉祜族佤族自治县', '99.5842', '22.3292', 'Menglian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530828', '澜沧拉祜族自治县', '530800', '澜沧', '3', '879', '665600', '中国,云南省,普洱市,澜沧拉祜族自治县', '99.9359', '22.5547', 'Lancang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530829', '西盟佤族自治县', '530800', '西盟', '3', '879', '665700', '中国,云南省,普洱市,西盟佤族自治县', '99.5987', '22.6477', 'Ximeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530900', '临沧市', '530000', '临沧', '2', '883', '677000', '中国,云南省,临沧市', '100.087', '23.8866', 'Lincang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530902', '临翔区', '530900', '临翔', '3', '883', '677000', '中国,云南省,临沧市,临翔区', '100.082', '23.895', 'Linxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530921', '凤庆县', '530900', '凤庆', '3', '883', '675900', '中国,云南省,临沧市,凤庆县', '99.9284', '24.5803', 'Fengqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530922', '云县', '530900', '云县', '3', '883', '675800', '中国,云南省,临沧市,云县', '100.128', '24.4468', 'Yunxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530923', '永德县', '530900', '永德', '3', '883', '677600', '中国,云南省,临沧市,永德县', '99.2533', '24.0276', 'Yongde', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530924', '镇康县', '530900', '镇康', '3', '883', '677704', '中国,云南省,临沧市,镇康县', '98.8255', '23.7624', 'Zhenkang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530925', '双江拉祜族佤族布朗族傣族自治县', '530900', '双江', '3', '883', '677300', '中国,云南省,临沧市,双江拉祜族佤族布朗族傣族自治县', '99.8277', '23.4735', 'Shuangjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530926', '耿马傣族佤族自治县', '530900', '耿马', '3', '883', '677500', '中国,云南省,临沧市,耿马傣族佤族自治县', '99.3979', '23.5378', 'Gengma', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('530927', '沧源佤族自治县', '530900', '沧源', '3', '883', '677400', '中国,云南省,临沧市,沧源佤族自治县', '99.2455', '23.1482', 'Cangyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532300', '楚雄彝族自治州', '530000', '楚雄', '2', '878', '675000', '中国,云南省,楚雄彝族自治州', '101.546', '25.042', 'Chuxiong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532301', '楚雄市', '532300', '楚雄', '3', '878', '675000', '中国,云南省,楚雄彝族自治州,楚雄市', '101.546', '25.0329', 'Chuxiong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532322', '双柏县', '532300', '双柏', '3', '878', '675100', '中国,云南省,楚雄彝族自治州,双柏县', '101.642', '24.6888', 'Shuangbai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532323', '牟定县', '532300', '牟定', '3', '878', '675500', '中国,云南省,楚雄彝族自治州,牟定县', '101.54', '25.3155', 'Mouding', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532324', '南华县', '532300', '南华', '3', '878', '675200', '中国,云南省,楚雄彝族自治州,南华县', '101.273', '25.1929', 'Nanhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532325', '姚安县', '532300', '姚安', '3', '878', '675300', '中国,云南省,楚雄彝族自治州,姚安县', '101.243', '25.5047', 'Yaoan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532326', '大姚县', '532300', '大姚', '3', '878', '675400', '中国,云南省,楚雄彝族自治州,大姚县', '101.324', '25.7222', 'Dayao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532327', '永仁县', '532300', '永仁', '3', '878', '651400', '中国,云南省,楚雄彝族自治州,永仁县', '101.672', '26.0579', 'Yongren', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532328', '元谋县', '532300', '元谋', '3', '878', '651300', '中国,云南省,楚雄彝族自治州,元谋县', '101.877', '25.7044', 'Yuanmou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532329', '武定县', '532300', '武定', '3', '878', '651600', '中国,云南省,楚雄彝族自治州,武定县', '102.404', '25.5295', 'Wuding', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532331', '禄丰县', '532300', '禄丰', '3', '878', '651200', '中国,云南省,楚雄彝族自治州,禄丰县', '102.078', '25.1481', 'Lufeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532500', '红河哈尼族彝族自治州', '530000', '红河', '2', '873', '661400', '中国,云南省,红河哈尼族彝族自治州', '103.384', '23.3668', 'Honghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532501', '个旧市', '532500', '个旧', '3', '873', '661000', '中国,云南省,红河哈尼族彝族自治州,个旧市', '103.16', '23.3589', 'Gejiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532502', '开远市', '532500', '开远', '3', '873', '661600', '中国,云南省,红河哈尼族彝族自治州,开远市', '103.27', '23.7101', 'Kaiyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532503', '蒙自市', '532500', '蒙自', '3', '873', '661101', '中国,云南省,红河哈尼族彝族自治州,蒙自市', '103.385', '23.3668', 'Mengzi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532504', '弥勒市', '532500', '弥勒', '3', '873', '652300', '中国,云南省,红河哈尼族彝族自治州,弥勒市', '103.437', '24.4084', 'Mile', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532523', '屏边苗族自治县', '532500', '屏边', '3', '873', '661200', '中国,云南省,红河哈尼族彝族自治州,屏边苗族自治县', '103.686', '22.9842', 'Pingbian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532524', '建水县', '532500', '建水', '3', '873', '654300', '中国,云南省,红河哈尼族彝族自治州,建水县', '102.827', '23.6347', 'Jianshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532525', '石屏县', '532500', '石屏', '3', '873', '662200', '中国,云南省,红河哈尼族彝族自治州,石屏县', '102.494', '23.7144', 'Shiping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532527', '泸西县', '532500', '泸西', '3', '873', '652400', '中国,云南省,红河哈尼族彝族自治州,泸西县', '103.764', '24.5285', 'Luxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532528', '元阳县', '532500', '元阳', '3', '873', '662400', '中国,云南省,红河哈尼族彝族自治州,元阳县', '102.833', '23.2228', 'Yuanyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532529', '红河县', '532500', '红河县', '3', '873', '654400', '中国,云南省,红河哈尼族彝族自治州,红河县', '102.421', '23.3677', 'Honghexian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532530', '金平苗族瑶族傣族自治县', '532500', '金平', '3', '873', '661500', '中国,云南省,红河哈尼族彝族自治州,金平苗族瑶族傣族自治县', '103.227', '22.7796', 'Jinping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532531', '绿春县', '532500', '绿春', '3', '873', '662500', '中国,云南省,红河哈尼族彝族自治州,绿春县', '102.397', '22.9937', 'Lvchun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532532', '河口瑶族自治县', '532500', '河口', '3', '873', '661300', '中国,云南省,红河哈尼族彝族自治州,河口瑶族自治县', '103.939', '22.5293', 'Hekou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532600', '文山壮族苗族自治州', '530000', '文山', '2', '876', '663000', '中国,云南省,文山壮族苗族自治州', '104.244', '23.3695', 'Wenshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532601', '文山市', '532600', '文山', '3', '876', '663000', '中国,云南省,文山壮族苗族自治州,文山市', '104.244', '23.3692', 'Wenshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532622', '砚山县', '532600', '砚山', '3', '876', '663100', '中国,云南省,文山壮族苗族自治州,砚山县', '104.333', '23.6072', 'Yanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532623', '西畴县', '532600', '西畴', '3', '876', '663500', '中国,云南省,文山壮族苗族自治州,西畴县', '104.674', '23.4394', 'Xichou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532624', '麻栗坡县', '532600', '麻栗坡', '3', '876', '663600', '中国,云南省,文山壮族苗族自治州,麻栗坡县', '104.701', '23.1203', 'Malipo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532625', '马关县', '532600', '马关', '3', '876', '663700', '中国,云南省,文山壮族苗族自治州,马关县', '104.395', '23.0129', 'Maguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532626', '丘北县', '532600', '丘北', '3', '876', '663200', '中国,云南省,文山壮族苗族自治州,丘北县', '104.193', '24.0396', 'Qiubei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532627', '广南县', '532600', '广南', '3', '876', '663300', '中国,云南省,文山壮族苗族自治州,广南县', '105.055', '24.0464', 'Guangnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532628', '富宁县', '532600', '富宁', '3', '876', '663400', '中国,云南省,文山壮族苗族自治州,富宁县', '105.631', '23.6254', 'Funing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532800', '西双版纳傣族自治州', '530000', '西双版纳', '2', '691', '666100', '中国,云南省,西双版纳傣族自治州', '100.798', '22.0017', 'Xishuangbanna', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532801', '景洪市', '532800', '景洪', '3', '691', '666100', '中国,云南省,西双版纳傣族自治州,景洪市', '100.8', '22.0107', 'Jinghong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532822', '勐海县', '532800', '勐海', '3', '691', '666200', '中国,云南省,西双版纳傣族自治州,勐海县', '100.449', '21.9618', 'Menghai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532823', '勐腊县', '532800', '勐腊', '3', '691', '666300', '中国,云南省,西双版纳傣族自治州,勐腊县', '101.565', '21.4816', 'Mengla', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532900', '大理白族自治州', '530000', '大理', '2', '872', '671000', '中国,云南省,大理白族自治州', '100.24', '25.5928', 'Dali', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532901', '大理市', '532900', '大理', '3', '872', '671000', '中国,云南省,大理白族自治州,大理市', '100.23', '25.5916', 'Dali', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532922', '漾濞彝族自治县', '532900', '漾濞', '3', '872', '672500', '中国,云南省,大理白族自治州,漾濞彝族自治县', '99.9547', '25.6652', 'Yangbi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532923', '祥云县', '532900', '祥云', '3', '872', '672100', '中国,云南省,大理白族自治州,祥云县', '100.558', '25.4734', 'Xiangyun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532924', '宾川县', '532900', '宾川', '3', '872', '671600', '中国,云南省,大理白族自治州,宾川县', '100.577', '25.8314', 'Binchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532925', '弥渡县', '532900', '弥渡', '3', '872', '675600', '中国,云南省,大理白族自治州,弥渡县', '100.491', '25.3418', 'Midu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532926', '南涧彝族自治县', '532900', '南涧', '3', '872', '675700', '中国,云南省,大理白族自治州,南涧彝族自治县', '100.51', '25.0435', 'Nanjian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532927', '巍山彝族回族自治县', '532900', '巍山', '3', '872', '672400', '中国,云南省,大理白族自治州,巍山彝族回族自治县', '100.306', '25.232', 'Weishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532928', '永平县', '532900', '永平', '3', '872', '672600', '中国,云南省,大理白族自治州,永平县', '99.5409', '25.4645', 'Yongping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532929', '云龙县', '532900', '云龙', '3', '872', '672700', '中国,云南省,大理白族自治州,云龙县', '99.3726', '25.885', 'Yunlong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532930', '洱源县', '532900', '洱源', '3', '872', '671200', '中国,云南省,大理白族自治州,洱源县', '99.949', '26.1083', 'Eryuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532931', '剑川县', '532900', '剑川', '3', '872', '671300', '中国,云南省,大理白族自治州,剑川县', '99.9054', '26.5369', 'Jianchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('532932', '鹤庆县', '532900', '鹤庆', '3', '872', '671500', '中国,云南省,大理白族自治州,鹤庆县', '100.177', '26.558', 'Heqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('533100', '德宏傣族景颇族自治州', '530000', '德宏', '2', '692', '678400', '中国,云南省,德宏傣族景颇族自治州', '98.5784', '24.4367', 'Dehong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('533102', '瑞丽市', '533100', '瑞丽', '3', '692', '678600', '中国,云南省,德宏傣族景颇族自治州,瑞丽市', '97.8518', '24.0128', 'Ruili', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('533103', '芒市', '533100', '芒市', '3', '692', '678400', '中国,云南省,德宏傣族景颇族自治州,芒市', '98.5886', '24.4337', 'Mangshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('533122', '梁河县', '533100', '梁河', '3', '692', '679200', '中国,云南省,德宏傣族景颇族自治州,梁河县', '98.2971', '24.8066', 'Lianghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('533123', '盈江县', '533100', '盈江', '3', '692', '679300', '中国,云南省,德宏傣族景颇族自治州,盈江县', '97.9318', '24.7058', 'Yingjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('533124', '陇川县', '533100', '陇川', '3', '692', '678700', '中国,云南省,德宏傣族景颇族自治州,陇川县', '97.792', '24.183', 'Longchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('533300', '怒江傈僳族自治州', '530000', '怒江', '2', '886', '673100', '中国,云南省,怒江傈僳族自治州', '98.8543', '25.8509', 'Nujiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('533321', '泸水县', '533300', '泸水', '3', '886', '673100', '中国,云南省,怒江傈僳族自治州,泸水县', '98.8553', '25.8377', 'Lushui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('533323', '福贡县', '533300', '福贡', '3', '886', '673400', '中国,云南省,怒江傈僳族自治州,福贡县', '98.8697', '26.9037', 'Fugong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('533324', '贡山独龙族怒族自治县', '533300', '贡山', '3', '886', '673500', '中国,云南省,怒江傈僳族自治州,贡山独龙族怒族自治县', '98.6658', '27.7409', 'Gongshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('533325', '兰坪白族普米族自治县', '533300', '兰坪', '3', '886', '671400', '中国,云南省,怒江傈僳族自治州,兰坪白族普米族自治县', '99.4189', '26.4525', 'Lanping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('533400', '迪庆藏族自治州', '530000', '迪庆', '2', '887', '674400', '中国,云南省,迪庆藏族自治州', '99.7065', '27.8269', 'Deqen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('533421', '香格里拉市', '533400', '香格里拉', '3', '887', '674400', '中国,云南省,迪庆藏族自治州,香格里拉市', '99.706', '27.8231', 'Xianggelila', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('533422', '德钦县', '533400', '德钦', '3', '887', '674500', '中国,云南省,迪庆藏族自治州,德钦县', '98.9108', '28.4863', 'Deqin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('533423', '维西傈僳族自治县', '533400', '维西', '3', '887', '674600', '中国,云南省,迪庆藏族自治州,维西傈僳族自治县', '99.284', '27.1793', 'Weixi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540000', '西藏自治区', '100000', '西藏', '1', '0', '0', '中国,西藏自治区', '91.1322', '29.6604', 'Tibet', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540100', '拉萨市', '540000', '拉萨', '2', '891', '850000', '中国,西藏自治区,拉萨市', '91.1322', '29.6604', 'Lhasa', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540102', '城关区', '540100', '城关', '3', '891', '850000', '中国,西藏自治区,拉萨市,城关区', '91.1386', '29.6531', 'Chengguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540121', '林周县', '540100', '林周', '3', '891', '851600', '中国,西藏自治区,拉萨市,林周县', '91.2586', '29.8944', 'Linzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540122', '当雄县', '540100', '当雄', '3', '891', '851500', '中国,西藏自治区,拉萨市,当雄县', '91.1008', '30.4831', 'Dangxiong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540123', '尼木县', '540100', '尼木', '3', '891', '851300', '中国,西藏自治区,拉萨市,尼木县', '90.1638', '29.4335', 'Nimu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540124', '曲水县', '540100', '曲水', '3', '891', '850600', '中国,西藏自治区,拉萨市,曲水县', '90.7319', '29.3564', 'Qushui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540125', '堆龙德庆县', '540100', '堆龙德庆', '3', '891', '851400', '中国,西藏自治区,拉萨市,堆龙德庆县', '91.0003', '29.65', 'Duilongdeqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540126', '达孜县', '540100', '达孜', '3', '891', '850100', '中国,西藏自治区,拉萨市,达孜县', '91.3576', '29.6722', 'Dazi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540127', '墨竹工卡县', '540100', '墨竹工卡', '3', '891', '850200', '中国,西藏自治区,拉萨市,墨竹工卡县', '91.7281', '29.8361', 'Mozhugongka', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540200', '日喀则市', '540000', '日喀则', '2', '892', '857000', '中国,西藏自治区,日喀则市', '88.8849', '29.2638', 'Rikaze', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540202', '桑珠孜区', '540200', '桑珠孜', '3', '892', '857000', '中国,西藏自治区,日喀则市,桑珠孜区', '88.8804', '29.2696', 'Sangzhuzi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540221', '南木林县', '540200', '南木林', '3', '892', '857100', '中国,西藏自治区,日喀则市,南木林县', '89.0969', '29.6821', 'Nanmulin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540222', '江孜县', '540200', '江孜', '3', '892', '857400', '中国,西藏自治区,日喀则市,江孜县', '89.6026', '28.9174', 'Jiangzi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540223', '定日县', '540200', '定日', '3', '892', '858200', '中国,西藏自治区,日喀则市,定日县', '87.1218', '28.6613', 'Dingri', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540224', '萨迦县', '540200', '萨迦', '3', '892', '857800', '中国,西藏自治区,日喀则市,萨迦县', '88.0219', '28.903', 'Sajia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540225', '拉孜县', '540200', '拉孜', '3', '892', '858100', '中国,西藏自治区,日喀则市,拉孜县', '87.6341', '29.085', 'Lazi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540226', '昂仁县', '540200', '昂仁', '3', '892', '858500', '中国,西藏自治区,日喀则市,昂仁县', '87.2386', '29.295', 'Angren', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540227', '谢通门县', '540200', '谢通门', '3', '892', '858900', '中国,西藏自治区,日喀则市,谢通门县', '88.2624', '29.4334', 'Xietongmen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540228', '白朗县', '540200', '白朗', '3', '892', '857300', '中国,西藏自治区,日喀则市,白朗县', '89.262', '29.1055', 'Bailang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540229', '仁布县', '540200', '仁布', '3', '892', '857200', '中国,西藏自治区,日喀则市,仁布县', '89.8423', '29.2301', 'Renbu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540230', '康马县', '540200', '康马', '3', '892', '857500', '中国,西藏自治区,日喀则市,康马县', '89.6853', '28.5567', 'Kangma', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540231', '定结县', '540200', '定结', '3', '892', '857900', '中国,西藏自治区,日喀则市,定结县', '87.7726', '28.364', 'Dingjie', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540232', '仲巴县', '540200', '仲巴', '3', '892', '858800', '中国,西藏自治区,日喀则市,仲巴县', '84.0295', '29.7659', 'Zhongba', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540233', '亚东县', '540200', '亚东', '3', '892', '857600', '中国,西藏自治区,日喀则市,亚东县', '88.908', '27.4839', 'Yadong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540234', '吉隆县', '540200', '吉隆', '3', '892', '858700', '中国,西藏自治区,日喀则市,吉隆县', '85.2985', '28.8538', 'Jilong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540235', '聂拉木县', '540200', '聂拉木', '3', '892', '858300', '中国,西藏自治区,日喀则市,聂拉木县', '85.98', '28.1565', 'Nielamu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540236', '萨嘎县', '540200', '萨嘎', '3', '892', '857800', '中国,西藏自治区,日喀则市,萨嘎县', '85.2341', '29.3294', 'Saga', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540237', '岗巴县', '540200', '岗巴', '3', '892', '857700', '中国,西藏自治区,日喀则市,岗巴县', '88.5207', '28.275', 'Gangba', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540300', '昌都市', '540000', '昌都', '2', '895', '854000', '中国,西藏自治区,昌都市', '97.1785', '31.1369', 'Qamdo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540302', '卡若区', '540300', '昌都', '3', '895', '854000', '中国,西藏自治区,昌都市,卡若区', '97.1804', '31.1385', 'Karuo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540321', '江达县', '540300', '江达', '3', '895', '854100', '中国,西藏自治区,昌都市,江达县', '98.2187', '31.5034', 'Jiangda', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540322', '贡觉县', '540300', '贡觉', '3', '895', '854200', '中国,西藏自治区,昌都市,贡觉县', '98.2716', '30.8594', 'Gongjue', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540323', '类乌齐县', '540300', '类乌齐', '3', '895', '855600', '中国,西藏自治区,昌都市,类乌齐县', '96.6002', '31.2121', 'Leiwuqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540324', '丁青县', '540300', '丁青', '3', '895', '855700', '中国,西藏自治区,昌都市,丁青县', '95.5936', '31.4162', 'Dingqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540325', '察雅县', '540300', '察雅', '3', '895', '854300', '中国,西藏自治区,昌都市,察雅县', '97.5652', '30.6534', 'Chaya', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540326', '八宿县', '540300', '八宿', '3', '895', '854600', '中国,西藏自治区,昌都市,八宿县', '96.9176', '30.0535', 'Basu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540327', '左贡县', '540300', '左贡', '3', '895', '854400', '中国,西藏自治区,昌都市,左贡县', '97.8443', '29.6711', 'Zuogong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540328', '芒康县', '540300', '芒康', '3', '895', '854500', '中国,西藏自治区,昌都市,芒康县', '98.5938', '29.6795', 'Mangkang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540329', '洛隆县', '540300', '洛隆', '3', '895', '855400', '中国,西藏自治区,昌都市,洛隆县', '95.8264', '30.7405', 'Luolong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('540330', '边坝县', '540300', '边坝', '3', '895', '855500', '中国,西藏自治区,昌都市,边坝县', '94.7069', '30.9343', 'Bianba', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542200', '山南地区', '540000', '山南', '2', '893', '856000', '中国,西藏自治区,山南地区', '91.7665', '29.236', 'Shannan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542221', '乃东县', '542200', '乃东', '3', '893', '856100', '中国,西藏自治区,山南地区,乃东县', '91.7615', '29.2249', 'Naidong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542222', '扎囊县', '542200', '扎囊', '3', '893', '850800', '中国,西藏自治区,山南地区,扎囊县', '91.3329', '29.2399', 'Zhanang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542223', '贡嘎县', '542200', '贡嘎', '3', '893', '850700', '中国,西藏自治区,山南地区,贡嘎县', '90.9887', '29.2941', 'Gongga', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542224', '桑日县', '542200', '桑日', '3', '893', '856200', '中国,西藏自治区,山南地区,桑日县', '92.0201', '29.2664', 'Sangri', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542225', '琼结县', '542200', '琼结', '3', '893', '856800', '中国,西藏自治区,山南地区,琼结县', '91.6809', '29.0263', 'Qiongjie', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542226', '曲松县', '542200', '曲松', '3', '893', '856300', '中国,西藏自治区,山南地区,曲松县', '92.2026', '29.0641', 'Qusong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542227', '措美县', '542200', '措美', '3', '893', '856900', '中国,西藏自治区,山南地区,措美县', '91.4324', '28.4379', 'Cuomei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542228', '洛扎县', '542200', '洛扎', '3', '893', '856600', '中国,西藏自治区,山南地区,洛扎县', '90.8604', '28.3872', 'Luozha', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542229', '加查县', '542200', '加查', '3', '893', '856400', '中国,西藏自治区,山南地区,加查县', '92.577', '29.1397', 'Jiacha', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542231', '隆子县', '542200', '隆子', '3', '893', '856600', '中国,西藏自治区,山南地区,隆子县', '92.4615', '28.408', 'Longzi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542232', '错那县', '542200', '错那', '3', '893', '856700', '中国,西藏自治区,山南地区,错那县', '91.9575', '27.9922', 'Cuona', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542233', '浪卡子县', '542200', '浪卡子', '3', '893', '851100', '中国,西藏自治区,山南地区,浪卡子县', '90.4', '28.9695', 'Langkazi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542400', '那曲地区', '540000', '那曲', '2', '896', '852000', '中国,西藏自治区,那曲地区', '92.0602', '31.476', 'Nagqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542421', '那曲县', '542400', '那曲', '3', '896', '852000', '中国,西藏自治区,那曲地区,那曲县', '92.0535', '31.4696', 'Naqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542422', '嘉黎县', '542400', '嘉黎', '3', '896', '852400', '中国,西藏自治区,那曲地区,嘉黎县', '93.2499', '30.6423', 'Jiali', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542423', '比如县', '542400', '比如', '3', '896', '852300', '中国,西藏自治区,那曲地区,比如县', '93.6869', '31.4779', 'Biru', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542424', '聂荣县', '542400', '聂荣', '3', '896', '853500', '中国,西藏自治区,那曲地区,聂荣县', '92.2957', '32.1119', 'Nierong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542425', '安多县', '542400', '安多', '3', '896', '853400', '中国,西藏自治区,那曲地区,安多县', '91.6795', '32.2612', 'Anduo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542426', '申扎县', '542400', '申扎', '3', '896', '853100', '中国,西藏自治区,那曲地区,申扎县', '88.7078', '30.93', 'Shenzha', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542427', '索县', '542400', '索县', '3', '896', '852200', '中国,西藏自治区,那曲地区,索县', '93.783', '31.8843', 'Suoxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542428', '班戈县', '542400', '班戈', '3', '896', '852500', '中国,西藏自治区,那曲地区,班戈县', '90.0191', '31.3615', 'Bange', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542429', '巴青县', '542400', '巴青', '3', '896', '852100', '中国,西藏自治区,那曲地区,巴青县', '94.0532', '31.9183', 'Baqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542430', '尼玛县', '542400', '尼玛', '3', '896', '852600', '中国,西藏自治区,那曲地区,尼玛县', '87.2526', '31.7965', 'Nima', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542431', '双湖县', '542400', '双湖', '3', '896', '852600', '中国,西藏自治区,那曲地区,双湖县', '88.8378', '33.189', 'Shuanghu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542500', '阿里地区', '540000', '阿里', '2', '897', '859000', '中国,西藏自治区,阿里地区', '80.1055', '32.5032', 'Ngari', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542521', '普兰县', '542500', '普兰', '3', '897', '859500', '中国,西藏自治区,阿里地区,普兰县', '81.177', '30.3', 'Pulan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542522', '札达县', '542500', '札达', '3', '897', '859600', '中国,西藏自治区,阿里地区,札达县', '79.8026', '31.4834', 'Zhada', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542523', '噶尔县', '542500', '噶尔', '3', '897', '859400', '中国,西藏自治区,阿里地区,噶尔县', '80.0958', '32.5002', 'Gaer', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542524', '日土县', '542500', '日土', '3', '897', '859700', '中国,西藏自治区,阿里地区,日土县', '79.7131', '33.3874', 'Ritu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542525', '革吉县', '542500', '革吉', '3', '897', '859100', '中国,西藏自治区,阿里地区,革吉县', '81.151', '32.3964', 'Geji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542526', '改则县', '542500', '改则', '3', '897', '859200', '中国,西藏自治区,阿里地区,改则县', '84.063', '32.3045', 'Gaize', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542527', '措勤县', '542500', '措勤', '3', '897', '859300', '中国,西藏自治区,阿里地区,措勤县', '85.1662', '31.021', 'Cuoqin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542600', '林芝地区', '540000', '林芝', '2', '894', '850400', '中国,西藏自治区,林芝地区', '94.3624', '29.6547', 'Nyingchi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542621', '林芝县', '542600', '林芝', '3', '894', '850400', '中国,西藏自治区,林芝地区,林芝县', '94.4839', '29.5756', 'Linzhi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542622', '工布江达县', '542600', '工布江达', '3', '894', '850300', '中国,西藏自治区,林芝地区,工布江达县', '93.2452', '29.8858', 'Gongbujiangda', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542623', '米林县', '542600', '米林', '3', '894', '850500', '中国,西藏自治区,林芝地区,米林县', '94.2132', '29.2153', 'Milin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542624', '墨脱县', '542600', '墨脱', '3', '894', '855300', '中国,西藏自治区,林芝地区,墨脱县', '95.3316', '29.327', 'Motuo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542625', '波密县', '542600', '波密', '3', '894', '855200', '中国,西藏自治区,林芝地区,波密县', '95.771', '29.8591', 'Bomi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542626', '察隅县', '542600', '察隅', '3', '894', '855100', '中国,西藏自治区,林芝地区,察隅县', '97.4668', '28.6618', 'Chayu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('542627', '朗县', '542600', '朗县', '3', '894', '856500', '中国,西藏自治区,林芝地区,朗县', '93.0754', '29.0455', 'Langxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610000', '陕西省', '100000', '陕西', '1', '0', '0', '中国,陕西省', '108.948', '34.2632', 'Shaanxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610100', '西安市', '610000', '西安', '2', '29', '710003', '中国,陕西省,西安市', '108.948', '34.2632', 'Xian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610102', '新城区', '610100', '新城', '3', '29', '710004', '中国,陕西省,西安市,新城区', '108.961', '34.2664', 'Xincheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610103', '碑林区', '610100', '碑林', '3', '29', '710001', '中国,陕西省,西安市,碑林区', '108.934', '34.2304', 'Beilin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610104', '莲湖区', '610100', '莲湖', '3', '29', '710003', '中国,陕西省,西安市,莲湖区', '108.94', '34.2671', 'Lianhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610111', '灞桥区', '610100', '灞桥', '3', '29', '710038', '中国,陕西省,西安市,灞桥区', '109.065', '34.2726', 'Baqiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610112', '未央区', '610100', '未央', '3', '29', '710014', '中国,陕西省,西安市,未央区', '108.947', '34.293', 'Weiyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610113', '雁塔区', '610100', '雁塔', '3', '29', '710061', '中国,陕西省,西安市,雁塔区', '108.949', '34.2225', 'Yanta', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610114', '阎良区', '610100', '阎良', '3', '29', '710087', '中国,陕西省,西安市,阎良区', '109.226', '34.6622', 'Yanliang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610115', '临潼区', '610100', '临潼', '3', '29', '710600', '中国,陕西省,西安市,临潼区', '109.214', '34.3666', 'Lintong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610116', '长安区', '610100', '长安', '3', '29', '710100', '中国,陕西省,西安市,长安区', '108.946', '34.1556', 'Changan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610122', '蓝田县', '610100', '蓝田', '3', '29', '710500', '中国,陕西省,西安市,蓝田县', '109.323', '34.1513', 'Lantian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610124', '周至县', '610100', '周至', '3', '29', '710400', '中国,陕西省,西安市,周至县', '108.222', '34.1634', 'Zhouzhi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610125', '户县', '610100', '户县', '3', '29', '710300', '中国,陕西省,西安市,户县', '108.605', '34.1086', 'Huxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610126', '高陵区', '610100', '高陵', '3', '29', '710200', '中国,陕西省,西安市,高陵区', '109.088', '34.5348', 'Gaoling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610200', '铜川市', '610000', '铜川', '2', '919', '727100', '中国,陕西省,铜川市', '108.963', '34.9089', 'Tongchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610202', '王益区', '610200', '王益', '3', '919', '727000', '中国,陕西省,铜川市,王益区', '109.076', '35.069', 'Wangyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610203', '印台区', '610200', '印台', '3', '919', '727007', '中国,陕西省,铜川市,印台区', '109.102', '35.1169', 'Yintai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610204', '耀州区', '610200', '耀州', '3', '919', '727100', '中国,陕西省,铜川市,耀州区', '108.986', '34.9131', 'Yaozhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610222', '宜君县', '610200', '宜君', '3', '919', '727200', '中国,陕西省,铜川市,宜君县', '109.118', '35.4011', 'Yijun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610300', '宝鸡市', '610000', '宝鸡', '2', '917', '721000', '中国,陕西省,宝鸡市', '107.145', '34.3693', 'Baoji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610302', '渭滨区', '610300', '渭滨', '3', '917', '721000', '中国,陕西省,宝鸡市,渭滨区', '107.15', '34.3712', 'Weibin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610303', '金台区', '610300', '金台', '3', '917', '721000', '中国,陕西省,宝鸡市,金台区', '107.147', '34.3761', 'Jintai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610304', '陈仓区', '610300', '陈仓', '3', '917', '721300', '中国,陕西省,宝鸡市,陈仓区', '107.387', '34.3545', 'Chencang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610322', '凤翔县', '610300', '凤翔', '3', '917', '721400', '中国,陕西省,宝鸡市,凤翔县', '107.396', '34.5232', 'Fengxiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610323', '岐山县', '610300', '岐山', '3', '917', '722400', '中国,陕西省,宝鸡市,岐山县', '107.622', '34.4438', 'Qishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610324', '扶风县', '610300', '扶风', '3', '917', '722200', '中国,陕西省,宝鸡市,扶风县', '107.9', '34.3752', 'Fufeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610326', '眉县', '610300', '眉县', '3', '917', '722300', '中国,陕西省,宝鸡市,眉县', '107.751', '34.2757', 'Meixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610327', '陇县', '610300', '陇县', '3', '917', '721200', '中国,陕西省,宝鸡市,陇县', '106.859', '34.894', 'Longxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610328', '千阳县', '610300', '千阳', '3', '917', '721100', '中国,陕西省,宝鸡市,千阳县', '107.13', '34.6422', 'Qianyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610329', '麟游县', '610300', '麟游', '3', '917', '721500', '中国,陕西省,宝鸡市,麟游县', '107.796', '34.6784', 'Linyou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610330', '凤县', '610300', '凤县', '3', '917', '721700', '中国,陕西省,宝鸡市,凤县', '106.524', '33.9117', 'Fengxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610331', '太白县', '610300', '太白', '3', '917', '721600', '中国,陕西省,宝鸡市,太白县', '107.316', '34.0621', 'Taibai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610400', '咸阳市', '610000', '咸阳', '2', '29', '712000', '中国,陕西省,咸阳市', '108.705', '34.3334', 'Xianyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610402', '秦都区', '610400', '秦都', '3', '29', '712000', '中国,陕西省,咸阳市,秦都区', '108.715', '34.338', 'Qindu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610403', '杨陵区', '610400', '杨陵', '3', '29', '712100', '中国,陕西省,咸阳市,杨陵区', '108.083', '34.2704', 'Yangling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610404', '渭城区', '610400', '渭城', '3', '29', '712000', '中国,陕西省,咸阳市,渭城区', '108.722', '34.332', 'Weicheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610422', '三原县', '610400', '三原', '3', '29', '713800', '中国,陕西省,咸阳市,三原县', '108.932', '34.6156', 'Sanyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610423', '泾阳县', '610400', '泾阳', '3', '29', '713700', '中国,陕西省,咸阳市,泾阳县', '108.843', '34.5271', 'Jingyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610424', '乾县', '610400', '乾县', '3', '29', '713300', '中国,陕西省,咸阳市,乾县', '108.242', '34.5295', 'Qianxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610425', '礼泉县', '610400', '礼泉', '3', '29', '713200', '中国,陕西省,咸阳市,礼泉县', '108.426', '34.4846', 'Liquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610426', '永寿县', '610400', '永寿', '3', '29', '713400', '中国,陕西省,咸阳市,永寿县', '108.145', '34.6908', 'Yongshou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610427', '彬县', '610400', '彬县', '3', '29', '713500', '中国,陕西省,咸阳市,彬县', '108.085', '35.0342', 'Binxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610428', '长武县', '610400', '长武', '3', '29', '713600', '中国,陕西省,咸阳市,长武县', '107.795', '35.2067', 'Changwu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610429', '旬邑县', '610400', '旬邑', '3', '29', '711300', '中国,陕西省,咸阳市,旬邑县', '108.334', '35.1134', 'Xunyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610430', '淳化县', '610400', '淳化', '3', '29', '711200', '中国,陕西省,咸阳市,淳化县', '108.58', '34.7989', 'Chunhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610431', '武功县', '610400', '武功', '3', '29', '712200', '中国,陕西省,咸阳市,武功县', '108.204', '34.26', 'Wugong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610481', '兴平市', '610400', '兴平', '3', '29', '713100', '中国,陕西省,咸阳市,兴平市', '108.491', '34.2979', 'Xingping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610500', '渭南市', '610000', '渭南', '2', '913', '714000', '中国,陕西省,渭南市', '109.503', '34.4994', 'Weinan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610502', '临渭区', '610500', '临渭', '3', '913', '714000', '中国,陕西省,渭南市,临渭区', '109.493', '34.4982', 'Linwei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610521', '华县', '610500', '华县', '3', '913', '714100', '中国,陕西省,渭南市,华县', '109.772', '34.5126', 'Huaxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610522', '潼关县', '610500', '潼关', '3', '913', '714300', '中国,陕西省,渭南市,潼关县', '110.244', '34.5428', 'Tongguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610523', '大荔县', '610500', '大荔', '3', '913', '715100', '中国,陕西省,渭南市,大荔县', '109.942', '34.7957', 'Dali', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610524', '合阳县', '610500', '合阳', '3', '913', '715300', '中国,陕西省,渭南市,合阳县', '110.149', '35.238', 'Heyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610525', '澄城县', '610500', '澄城', '3', '913', '715200', '中国,陕西省,渭南市,澄城县', '109.934', '35.184', 'Chengcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610526', '蒲城县', '610500', '蒲城', '3', '913', '715500', '中国,陕西省,渭南市,蒲城县', '109.59', '34.9568', 'Pucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610527', '白水县', '610500', '白水', '3', '913', '715600', '中国,陕西省,渭南市,白水县', '109.593', '35.1786', 'Baishui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610528', '富平县', '610500', '富平', '3', '913', '711700', '中国,陕西省,渭南市,富平县', '109.18', '34.7511', 'Fuping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610581', '韩城市', '610500', '韩城', '3', '913', '715400', '中国,陕西省,渭南市,韩城市', '110.442', '35.4793', 'Hancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610582', '华阴市', '610500', '华阴', '3', '913', '714200', '中国,陕西省,渭南市,华阴市', '110.088', '34.5661', 'Huayin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610600', '延安市', '610000', '延安', '2', '911', '716000', '中国,陕西省,延安市', '109.491', '36.5965', 'Yanan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610602', '宝塔区', '610600', '宝塔', '3', '911', '716000', '中国,陕西省,延安市,宝塔区', '109.493', '36.5915', 'Baota', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610621', '延长县', '610600', '延长', '3', '911', '717100', '中国,陕西省,延安市,延长县', '110.011', '36.579', 'Yanchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610622', '延川县', '610600', '延川', '3', '911', '717200', '中国,陕西省,延安市,延川县', '110.194', '36.8782', 'Yanchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610623', '子长县', '610600', '子长', '3', '911', '717300', '中国,陕西省,延安市,子长县', '109.675', '37.1425', 'Zichang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610624', '安塞县', '610600', '安塞', '3', '911', '717400', '中国,陕西省,延安市,安塞县', '109.327', '36.8651', 'Ansai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610625', '志丹县', '610600', '志丹', '3', '911', '717500', '中国,陕西省,延安市,志丹县', '108.768', '36.8218', 'Zhidan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610626', '吴起县', '610600', '吴起', '3', '911', '717600', '中国,陕西省,延安市,吴起县', '108.176', '36.9278', 'Wuqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610627', '甘泉县', '610600', '甘泉', '3', '911', '716100', '中国,陕西省,延安市,甘泉县', '109.35', '36.2775', 'Ganquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610628', '富县', '610600', '富县', '3', '911', '727500', '中国,陕西省,延安市,富县', '109.379', '35.988', 'Fuxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610629', '洛川县', '610600', '洛川', '3', '911', '727400', '中国,陕西省,延安市,洛川县', '109.433', '35.7608', 'Luochuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610630', '宜川县', '610600', '宜川', '3', '911', '716200', '中国,陕西省,延安市,宜川县', '110.172', '36.0473', 'Yichuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610631', '黄龙县', '610600', '黄龙', '3', '911', '715700', '中国,陕西省,延安市,黄龙县', '109.843', '35.5835', 'Huanglong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610632', '黄陵县', '610600', '黄陵', '3', '911', '727300', '中国,陕西省,延安市,黄陵县', '109.263', '35.5836', 'Huangling', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610700', '汉中市', '610000', '汉中', '2', '916', '723000', '中国,陕西省,汉中市', '107.029', '33.0777', 'Hanzhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610702', '汉台区', '610700', '汉台', '3', '916', '723000', '中国,陕西省,汉中市,汉台区', '107.032', '33.0677', 'Hantai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610721', '南郑县', '610700', '南郑', '3', '916', '723100', '中国,陕西省,汉中市,南郑县', '106.94', '33.003', 'Nanzheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610722', '城固县', '610700', '城固', '3', '916', '723200', '中国,陕西省,汉中市,城固县', '107.334', '33.1566', 'Chenggu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610723', '洋县', '610700', '洋县', '3', '916', '723300', '中国,陕西省,汉中市,洋县', '107.547', '33.221', 'Yangxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610724', '西乡县', '610700', '西乡', '3', '916', '723500', '中国,陕西省,汉中市,西乡县', '107.769', '32.9841', 'Xixiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610725', '勉县', '610700', '勉县', '3', '916', '724200', '中国,陕西省,汉中市,勉县', '106.676', '33.1527', 'Mianxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610726', '宁强县', '610700', '宁强', '3', '916', '724400', '中国,陕西省,汉中市,宁强县', '106.26', '32.8288', 'Ningqiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610727', '略阳县', '610700', '略阳', '3', '916', '724300', '中国,陕西省,汉中市,略阳县', '106.154', '33.3301', 'Lueyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610728', '镇巴县', '610700', '镇巴', '3', '916', '723600', '中国,陕西省,汉中市,镇巴县', '107.896', '32.5349', 'Zhenba', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610729', '留坝县', '610700', '留坝', '3', '916', '724100', '中国,陕西省,汉中市,留坝县', '106.922', '33.6161', 'Liuba', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610730', '佛坪县', '610700', '佛坪', '3', '916', '723400', '中国,陕西省,汉中市,佛坪县', '107.99', '33.525', 'Foping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610800', '榆林市', '610000', '榆林', '2', '912', '719000', '中国,陕西省,榆林市', '109.741', '38.2902', 'Yulin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610802', '榆阳区', '610800', '榆阳', '3', '912', '719000', '中国,陕西省,榆林市,榆阳区', '109.735', '38.2784', 'Yuyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610821', '神木县', '610800', '神木', '3', '912', '719300', '中国,陕西省,榆林市,神木县', '110.499', '38.8423', 'Shenmu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610822', '府谷县', '610800', '府谷', '3', '912', '719400', '中国,陕西省,榆林市,府谷县', '111.067', '39.028', 'Fugu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610823', '横山县', '610800', '横山', '3', '912', '719100', '中国,陕西省,榆林市,横山县', '109.296', '37.958', 'Hengshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610824', '靖边县', '610800', '靖边', '3', '912', '718500', '中国,陕西省,榆林市,靖边县', '108.794', '37.5994', 'Jingbian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610825', '定边县', '610800', '定边', '3', '912', '718600', '中国,陕西省,榆林市,定边县', '107.598', '37.5904', 'Dingbian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610826', '绥德县', '610800', '绥德', '3', '912', '718000', '中国,陕西省,榆林市,绥德县', '110.261', '37.4978', 'Suide', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610827', '米脂县', '610800', '米脂', '3', '912', '718100', '中国,陕西省,榆林市,米脂县', '110.184', '37.7553', 'Mizhi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610828', '佳县', '610800', '佳县', '3', '912', '719200', '中国,陕西省,榆林市,佳县', '110.494', '38.0225', 'Jiaxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610829', '吴堡县', '610800', '吴堡', '3', '912', '718200', '中国,陕西省,榆林市,吴堡县', '110.745', '37.4571', 'Wubu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610830', '清涧县', '610800', '清涧', '3', '912', '718300', '中国,陕西省,榆林市,清涧县', '110.122', '37.0885', 'Qingjian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610831', '子洲县', '610800', '子洲', '3', '912', '718400', '中国,陕西省,榆林市,子洲县', '110.035', '37.6124', 'Zizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610900', '安康市', '610000', '安康', '2', '915', '725000', '中国,陕西省,安康市', '109.029', '32.6903', 'Ankang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610902', '汉滨区', '610900', '汉滨', '3', '915', '725000', '中国,陕西省,安康市,汉滨区', '109.027', '32.6952', 'Hanbin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610921', '汉阴县', '610900', '汉阴', '3', '915', '725100', '中国,陕西省,安康市,汉阴县', '108.511', '32.8913', 'Hanyin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610922', '石泉县', '610900', '石泉', '3', '915', '725200', '中国,陕西省,安康市,石泉县', '108.248', '33.0397', 'Shiquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610923', '宁陕县', '610900', '宁陕', '3', '915', '711600', '中国,陕西省,安康市,宁陕县', '108.315', '33.3173', 'Ningshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610924', '紫阳县', '610900', '紫阳', '3', '915', '725300', '中国,陕西省,安康市,紫阳县', '108.537', '32.5211', 'Ziyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610925', '岚皋县', '610900', '岚皋', '3', '915', '725400', '中国,陕西省,安康市,岚皋县', '108.903', '32.3079', 'Langao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610926', '平利县', '610900', '平利', '3', '915', '725500', '中国,陕西省,安康市,平利县', '109.358', '32.3911', 'Pingli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610927', '镇坪县', '610900', '镇坪', '3', '915', '725600', '中国,陕西省,安康市,镇坪县', '109.525', '31.8833', 'Zhenping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610928', '旬阳县', '610900', '旬阳', '3', '915', '725700', '中国,陕西省,安康市,旬阳县', '109.362', '32.8321', 'Xunyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('610929', '白河县', '610900', '白河', '3', '915', '725800', '中国,陕西省,安康市,白河县', '110.113', '32.8096', 'Baihe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('611000', '商洛市', '610000', '商洛', '2', '914', '726000', '中国,陕西省,商洛市', '109.94', '33.8683', 'Shangluo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('611002', '商州区', '611000', '商州', '3', '914', '726000', '中国,陕西省,商洛市,商州区', '109.941', '33.8627', 'Shangzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('611021', '洛南县', '611000', '洛南', '3', '914', '726100', '中国,陕西省,商洛市,洛南县', '110.146', '34.0899', 'Luonan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('611022', '丹凤县', '611000', '丹凤', '3', '914', '726200', '中国,陕西省,商洛市,丹凤县', '110.335', '33.6947', 'Danfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('611023', '商南县', '611000', '商南', '3', '914', '726300', '中国,陕西省,商洛市,商南县', '110.884', '33.5258', 'Shangnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('611024', '山阳县', '611000', '山阳', '3', '914', '726400', '中国,陕西省,商洛市,山阳县', '109.888', '33.5293', 'Shanyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('611025', '镇安县', '611000', '镇安', '3', '914', '711500', '中国,陕西省,商洛市,镇安县', '109.154', '33.4237', 'Zhenan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('611026', '柞水县', '611000', '柞水', '3', '914', '711400', '中国,陕西省,商洛市,柞水县', '109.111', '33.6831', 'Zhashui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('611100', '西咸新区', '610000', '西咸', '2', '29', '712000', '中国,陕西省,西咸新区', '108.811', '34.3071', 'Xixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('611101', '空港新城', '611100', '空港', '3', '374', '461000', '中国,陕西省,西咸新区,空港新城', '108.761', '34.4409', 'Konggang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('611102', '沣东新城', '611100', '沣东', '3', '29', '710000', '中国,陕西省,西咸新区,沣东新城', '108.83', '34.2674', 'Fengdong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('611103', '秦汉新城', '611100', '秦汉', '3', '29', '712000', '中国,陕西省,西咸新区,秦汉新城', '108.838', '34.3865', 'Qinhan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('611104', '沣西新城', '611100', '沣西', '3', '29', '710000', '中国,陕西省,西咸新区,沣西新城', '108.712', '34.1905', 'Fengxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('611105', '泾河新城', '611100', '泾河', '3', '29', '713700', '中国,陕西省,西咸新区,泾河新城', '109.05', '34.4606', 'Jinghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620000', '甘肃省', '100000', '甘肃', '1', '0', '0', '中国,甘肃省', '103.824', '36.058', 'Gansu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620100', '兰州市', '620000', '兰州', '2', '931', '730030', '中国,甘肃省,兰州市', '103.824', '36.058', 'Lanzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620102', '城关区', '620100', '城关', '3', '931', '730030', '中国,甘肃省,兰州市,城关区', '103.825', '36.0573', 'Chengguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620103', '七里河区', '620100', '七里河', '3', '931', '730050', '中国,甘肃省,兰州市,七里河区', '103.786', '36.0658', 'Qilihe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620104', '西固区', '620100', '西固', '3', '931', '730060', '中国,甘肃省,兰州市,西固区', '103.628', '36.0886', 'Xigu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620105', '安宁区', '620100', '安宁', '3', '931', '730070', '中国,甘肃省,兰州市,安宁区', '103.719', '36.1038', 'Anning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620111', '红古区', '620100', '红古', '3', '931', '730084', '中国,甘肃省,兰州市,红古区', '102.86', '36.3454', 'Honggu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620121', '永登县', '620100', '永登', '3', '931', '730300', '中国,甘肃省,兰州市,永登县', '103.261', '36.7352', 'Yongdeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620122', '皋兰县', '620100', '皋兰', '3', '931', '730200', '中国,甘肃省,兰州市,皋兰县', '103.945', '36.3321', 'Gaolan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620123', '榆中县', '620100', '榆中', '3', '931', '730100', '中国,甘肃省,兰州市,榆中县', '104.115', '35.8442', 'Yuzhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620200', '嘉峪关市', '620000', '嘉峪关', '2', '937', '735100', '中国,甘肃省,嘉峪关市', '98.2773', '39.7865', 'Jiayuguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620201', '雄关区', '620200', '雄关', '3', '937', '735100', '中国,甘肃省,嘉峪关市,雄关区', '98.2774', '39.7793', 'Xiongguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620202', '长城区', '620200', '长城', '3', '937', '735106', '中国,甘肃省,嘉峪关市,长城区', '98.2735', '39.7874', 'Changcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620203', '镜铁区', '620200', '镜铁', '3', '937', '735100', '中国,甘肃省,嘉峪关市,镜铁区', '98.2773', '39.7865', 'Jingtie', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620300', '金昌市', '620000', '金昌', '2', '935', '737100', '中国,甘肃省,金昌市', '102.188', '38.5142', 'Jinchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620302', '金川区', '620300', '金川', '3', '935', '737100', '中国,甘肃省,金昌市,金川区', '102.194', '38.521', 'Jinchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620321', '永昌县', '620300', '永昌', '3', '935', '737200', '中国,甘肃省,金昌市,永昌县', '101.972', '38.2471', 'Yongchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620400', '白银市', '620000', '白银', '2', '943', '730900', '中国,甘肃省,白银市', '104.174', '36.5457', 'Baiyin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620402', '白银区', '620400', '白银', '3', '943', '730900', '中国,甘肃省,白银市,白银区', '104.174', '36.5441', 'Baiyin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620403', '平川区', '620400', '平川', '3', '943', '730913', '中国,甘肃省,白银市,平川区', '104.825', '36.7277', 'Pingchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620421', '靖远县', '620400', '靖远', '3', '943', '730600', '中国,甘肃省,白银市,靖远县', '104.683', '36.566', 'Jingyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620422', '会宁县', '620400', '会宁', '3', '943', '730700', '中国,甘肃省,白银市,会宁县', '105.053', '35.6963', 'Huining', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620423', '景泰县', '620400', '景泰', '3', '943', '730400', '中国,甘肃省,白银市,景泰县', '104.063', '37.1836', 'Jingtai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620500', '天水市', '620000', '天水', '2', '938', '741000', '中国,甘肃省,天水市', '105.725', '34.5785', 'Tianshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620502', '秦州区', '620500', '秦州', '3', '938', '741000', '中国,甘肃省,天水市,秦州区', '105.724', '34.5809', 'Qinzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620503', '麦积区', '620500', '麦积', '3', '938', '741020', '中国,甘肃省,天水市,麦积区', '105.89', '34.5707', 'Maiji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620521', '清水县', '620500', '清水', '3', '938', '741400', '中国,甘肃省,天水市,清水县', '106.137', '34.7503', 'Qingshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620522', '秦安县', '620500', '秦安', '3', '938', '741600', '中国,甘肃省,天水市,秦安县', '105.67', '34.8589', 'Qinan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620523', '甘谷县', '620500', '甘谷', '3', '938', '741200', '中国,甘肃省,天水市,甘谷县', '105.333', '34.7366', 'Gangu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620524', '武山县', '620500', '武山', '3', '938', '741300', '中国,甘肃省,天水市,武山县', '104.884', '34.7212', 'Wushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620525', '张家川回族自治县', '620500', '张家川', '3', '938', '741500', '中国,甘肃省,天水市,张家川回族自治县', '106.216', '34.9958', 'Zhangjiachuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620600', '武威市', '620000', '武威', '2', '935', '733000', '中国,甘肃省,武威市', '102.635', '37.93', 'Wuwei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620602', '凉州区', '620600', '凉州', '3', '935', '733000', '中国,甘肃省,武威市,凉州区', '102.642', '37.9283', 'Liangzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620621', '民勤县', '620600', '民勤', '3', '935', '733300', '中国,甘肃省,武威市,民勤县', '103.09', '38.6249', 'Minqin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620622', '古浪县', '620600', '古浪', '3', '935', '733100', '中国,甘肃省,武威市,古浪县', '102.892', '37.4651', 'Gulang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620623', '天祝藏族自治县', '620600', '天祝', '3', '935', '733200', '中国,甘肃省,武威市,天祝藏族自治县', '103.136', '36.9771', 'Tianzhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620700', '张掖市', '620000', '张掖', '2', '936', '734000', '中国,甘肃省,张掖市', '100.455', '38.9329', 'Zhangye', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620702', '甘州区', '620700', '甘州', '3', '936', '734000', '中国,甘肃省,张掖市,甘州区', '100.453', '38.9295', 'Ganzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620721', '肃南裕固族自治县', '620700', '肃南', '3', '936', '734400', '中国,甘肃省,张掖市,肃南裕固族自治县', '99.6141', '38.8378', 'Sunan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620722', '民乐县', '620700', '民乐', '3', '936', '734500', '中国,甘肃省,张掖市,民乐县', '100.811', '38.4348', 'Minle', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620723', '临泽县', '620700', '临泽', '3', '936', '734200', '中国,甘肃省,张掖市,临泽县', '100.164', '39.1525', 'Linze', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620724', '高台县', '620700', '高台', '3', '936', '734300', '中国,甘肃省,张掖市,高台县', '99.8192', '39.3783', 'Gaotai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620725', '山丹县', '620700', '山丹', '3', '936', '734100', '中国,甘肃省,张掖市,山丹县', '101.094', '38.7847', 'Shandan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620800', '平凉市', '620000', '平凉', '2', '933', '744000', '中国,甘肃省,平凉市', '106.685', '35.5428', 'Pingliang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620802', '崆峒区', '620800', '崆峒', '3', '933', '744000', '中国,甘肃省,平凉市,崆峒区', '106.675', '35.5426', 'Kongtong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620821', '泾川县', '620800', '泾川', '3', '933', '744300', '中国,甘肃省,平凉市,泾川县', '107.366', '35.3322', 'Jingchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620822', '灵台县', '620800', '灵台', '3', '933', '744400', '中国,甘肃省,平凉市,灵台县', '107.617', '35.0677', 'Lingtai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620823', '崇信县', '620800', '崇信', '3', '933', '744200', '中国,甘肃省,平凉市,崇信县', '107.037', '35.3034', 'Chongxin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620824', '华亭县', '620800', '华亭', '3', '933', '744100', '中国,甘肃省,平凉市,华亭县', '106.655', '35.2183', 'Huating', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620825', '庄浪县', '620800', '庄浪', '3', '933', '744600', '中国,甘肃省,平凉市,庄浪县', '106.037', '35.2024', 'Zhuanglang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620826', '静宁县', '620800', '静宁', '3', '933', '743400', '中国,甘肃省,平凉市,静宁县', '105.727', '35.5199', 'Jingning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620900', '酒泉市', '620000', '酒泉', '2', '937', '735000', '中国,甘肃省,酒泉市', '98.5108', '39.744', 'Jiuquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620902', '肃州区', '620900', '肃州', '3', '937', '735000', '中国,甘肃省,酒泉市,肃州区', '98.5078', '39.7451', 'Suzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620921', '金塔县', '620900', '金塔', '3', '937', '735300', '中国,甘肃省,酒泉市,金塔县', '98.9', '39.9773', 'Jinta', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620922', '瓜州县', '620900', '瓜州', '3', '937', '736100', '中国,甘肃省,酒泉市,瓜州县', '95.7827', '40.5155', 'Guazhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620923', '肃北蒙古族自治县', '620900', '肃北', '3', '937', '736300', '中国,甘肃省,酒泉市,肃北蒙古族自治县', '94.8765', '39.5121', 'Subei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620924', '阿克塞哈萨克族自治县', '620900', '阿克塞', '3', '937', '736400', '中国,甘肃省,酒泉市,阿克塞哈萨克族自治县', '94.341', '39.6343', 'Akesai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620981', '玉门市', '620900', '玉门', '3', '937', '735200', '中国,甘肃省,酒泉市,玉门市', '97.0454', '40.2917', 'Yumen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('620982', '敦煌市', '620900', '敦煌', '3', '937', '736200', '中国,甘肃省,酒泉市,敦煌市', '94.6616', '40.1421', 'Dunhuang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621000', '庆阳市', '620000', '庆阳', '2', '934', '745000', '中国,甘肃省,庆阳市', '107.638', '35.7342', 'Qingyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621002', '西峰区', '621000', '西峰', '3', '934', '745000', '中国,甘肃省,庆阳市,西峰区', '107.651', '35.7307', 'Xifeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621021', '庆城县', '621000', '庆城', '3', '934', '745100', '中国,甘肃省,庆阳市,庆城县', '107.883', '36.0151', 'Qingcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621022', '环县', '621000', '环县', '3', '934', '745700', '中国,甘肃省,庆阳市,环县', '107.308', '36.5685', 'Huanxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621023', '华池县', '621000', '华池', '3', '934', '745600', '中国,甘肃省,庆阳市,华池县', '107.989', '36.4611', 'Huachi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621024', '合水县', '621000', '合水', '3', '934', '745400', '中国,甘肃省,庆阳市,合水县', '108.02', '35.8191', 'Heshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621025', '正宁县', '621000', '正宁', '3', '934', '745300', '中国,甘肃省,庆阳市,正宁县', '108.36', '35.4917', 'Zhengning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621026', '宁县', '621000', '宁县', '3', '934', '745200', '中国,甘肃省,庆阳市,宁县', '107.925', '35.5016', 'Ningxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621027', '镇原县', '621000', '镇原', '3', '934', '744500', '中国,甘肃省,庆阳市,镇原县', '107.199', '35.6771', 'Zhenyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621100', '定西市', '620000', '定西', '2', '932', '743000', '中国,甘肃省,定西市', '104.626', '35.5796', 'Dingxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621102', '安定区', '621100', '安定', '3', '932', '743000', '中国,甘肃省,定西市,安定区', '104.611', '35.5807', 'Anding', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621121', '通渭县', '621100', '通渭', '3', '932', '743300', '中国,甘肃省,定西市,通渭县', '105.242', '35.211', 'Tongwei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621122', '陇西县', '621100', '陇西', '3', '932', '748100', '中国,甘肃省,定西市,陇西县', '104.634', '35.0024', 'Longxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621123', '渭源县', '621100', '渭源', '3', '932', '748200', '中国,甘肃省,定西市,渭源县', '104.214', '35.1365', 'Weiyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621124', '临洮县', '621100', '临洮', '3', '932', '730500', '中国,甘肃省,定西市,临洮县', '103.862', '35.3751', 'Lintao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621125', '漳县', '621100', '漳县', '3', '932', '748300', '中国,甘肃省,定西市,漳县', '104.467', '34.8498', 'Zhangxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621126', '岷县', '621100', '岷县', '3', '932', '748400', '中国,甘肃省,定西市,岷县', '104.038', '34.4344', 'Minxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621200', '陇南市', '620000', '陇南', '2', '939', '746000', '中国,甘肃省,陇南市', '104.929', '33.3886', 'Longnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621202', '武都区', '621200', '武都', '3', '939', '746000', '中国,甘肃省,陇南市,武都区', '104.927', '33.3924', 'Wudu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621221', '成县', '621200', '成县', '3', '939', '742500', '中国,甘肃省,陇南市,成县', '105.726', '33.7393', 'Chengxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621222', '文县', '621200', '文县', '3', '939', '746400', '中国,甘肃省,陇南市,文县', '104.684', '32.9434', 'Wenxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621223', '宕昌县', '621200', '宕昌', '3', '939', '748500', '中国,甘肃省,陇南市,宕昌县', '104.393', '34.0473', 'Dangchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621224', '康县', '621200', '康县', '3', '939', '746500', '中国,甘肃省,陇南市,康县', '105.607', '33.3291', 'Kangxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621225', '西和县', '621200', '西和', '3', '939', '742100', '中国,甘肃省,陇南市,西和县', '105.301', '34.0143', 'Xihe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621226', '礼县', '621200', '礼县', '3', '939', '742200', '中国,甘肃省,陇南市,礼县', '105.178', '34.1894', 'Lixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621227', '徽县', '621200', '徽县', '3', '939', '742300', '中国,甘肃省,陇南市,徽县', '106.085', '33.769', 'Huixian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('621228', '两当县', '621200', '两当', '3', '939', '742400', '中国,甘肃省,陇南市,两当县', '106.305', '33.9096', 'Liangdang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('622900', '临夏回族自治州', '620000', '临夏', '2', '930', '731100', '中国,甘肃省,临夏回族自治州', '103.212', '35.5994', 'Linxia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('622901', '临夏市', '622900', '临夏', '3', '930', '731100', '中国,甘肃省,临夏回族自治州,临夏市', '103.21', '35.5992', 'Linxia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('622921', '临夏县', '622900', '临夏', '3', '930', '731800', '中国,甘肃省,临夏回族自治州,临夏县', '102.994', '35.4952', 'Linxia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('622922', '康乐县', '622900', '康乐', '3', '930', '731500', '中国,甘肃省,临夏回族自治州,康乐县', '103.711', '35.3722', 'Kangle', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('622923', '永靖县', '622900', '永靖', '3', '930', '731600', '中国,甘肃省,临夏回族自治州,永靖县', '103.32', '35.9384', 'Yongjing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('622924', '广河县', '622900', '广河', '3', '930', '731300', '中国,甘肃省,临夏回族自治州,广河县', '103.569', '35.481', 'Guanghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('622925', '和政县', '622900', '和政', '3', '930', '731200', '中国,甘肃省,临夏回族自治州,和政县', '103.349', '35.4259', 'Hezheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('622926', '东乡族自治县', '622900', '东乡族', '3', '930', '731400', '中国,甘肃省,临夏回族自治州,东乡族自治县', '103.395', '35.6647', 'Dongxiangzu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('622927', '积石山保安族东乡族撒拉族自治县', '622900', '积石山', '3', '930', '731700', '中国,甘肃省,临夏回族自治州,积石山保安族东乡族撒拉族自治县', '102.874', '35.7182', 'Jishishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('623000', '甘南藏族自治州', '620000', '甘南', '2', '941', '747000', '中国,甘肃省,甘南藏族自治州', '102.911', '34.9864', 'Gannan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('623001', '合作市', '623000', '合作', '3', '941', '747000', '中国,甘肃省,甘南藏族自治州,合作市', '102.911', '35.0002', 'Hezuo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('623021', '临潭县', '623000', '临潭', '3', '941', '747500', '中国,甘肃省,甘南藏族自治州,临潭县', '103.353', '34.6951', 'Lintan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('623022', '卓尼县', '623000', '卓尼', '3', '941', '747600', '中国,甘肃省,甘南藏族自治州,卓尼县', '103.508', '34.5892', 'Zhuoni', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('623023', '舟曲县', '623000', '舟曲', '3', '941', '746300', '中国,甘肃省,甘南藏族自治州,舟曲县', '104.372', '33.7847', 'Zhouqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('623024', '迭部县', '623000', '迭部', '3', '941', '747400', '中国,甘肃省,甘南藏族自治州,迭部县', '103.223', '34.0562', 'Diebu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('623025', '玛曲县', '623000', '玛曲', '3', '941', '747300', '中国,甘肃省,甘南藏族自治州,玛曲县', '102.075', '33.997', 'Maqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('623026', '碌曲县', '623000', '碌曲', '3', '941', '747200', '中国,甘肃省,甘南藏族自治州,碌曲县', '102.492', '34.5887', 'Luqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('623027', '夏河县', '623000', '夏河', '3', '941', '747100', '中国,甘肃省,甘南藏族自治州,夏河县', '102.522', '35.2049', 'Xiahe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('630000', '青海省', '100000', '青海', '1', '0', '0', '中国,青海省', '101.779', '36.6232', 'Qinghai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('630100', '西宁市', '630000', '西宁', '2', '971', '810000', '中国,青海省,西宁市', '101.779', '36.6232', 'Xining', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('630102', '城东区', '630100', '城东', '3', '971', '810007', '中国,青海省,西宁市,城东区', '101.804', '36.5997', 'Chengdong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('630103', '城中区', '630100', '城中', '3', '971', '810000', '中国,青海省,西宁市,城中区', '101.784', '36.6228', 'Chengzhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('630104', '城西区', '630100', '城西', '3', '971', '810001', '中国,青海省,西宁市,城西区', '101.766', '36.6283', 'Chengxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('630105', '城北区', '630100', '城北', '3', '971', '810003', '中国,青海省,西宁市,城北区', '101.766', '36.6501', 'Chengbei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('630121', '大通回族土族自治县', '630100', '大通', '3', '971', '810100', '中国,青海省,西宁市,大通回族土族自治县', '101.702', '36.9349', 'Datong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('630122', '湟中县', '630100', '湟中', '3', '971', '811600', '中国,青海省,西宁市,湟中县', '101.572', '36.5008', 'Huangzhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('630123', '湟源县', '630100', '湟源', '3', '971', '812100', '中国,青海省,西宁市,湟源县', '101.256', '36.6824', 'Huangyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('630200', '海东市', '630000', '海东', '2', '972', '810700', '中国,青海省,海东市', '102.103', '36.5029', 'Haidong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('630202', '乐都区', '630200', '乐都', '3', '972', '810700', '中国,青海省,海东市,乐都区', '102.402', '36.4803', 'Ledu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('630221', '平安县', '630200', '平安', '3', '972', '810600', '中国,青海省,海东市,平安县', '102.104', '36.5027', 'Pingan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('630222', '民和回族土族自治县', '630200', '民和', '3', '972', '810800', '中国,青海省,海东市,民和回族土族自治县', '102.804', '36.3295', 'Minhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('630223', '互助土族自治县', '630200', '互助', '3', '972', '810500', '中国,青海省,海东市,互助土族自治县', '101.957', '36.8399', 'Huzhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('630224', '化隆回族自治县', '630200', '化隆', '3', '972', '810900', '中国,青海省,海东市,化隆回族自治县', '102.262', '36.0983', 'Hualong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('630225', '循化撒拉族自治县', '630200', '循化', '3', '972', '811100', '中国,青海省,海东市,循化撒拉族自治县', '102.487', '35.8472', 'Xunhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632200', '海北藏族自治州', '630000', '海北', '2', '970', '812200', '中国,青海省,海北藏族自治州', '100.901', '36.9594', 'Haibei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632221', '门源回族自治县', '632200', '门源', '3', '970', '810300', '中国,青海省,海北藏族自治州,门源回族自治县', '101.622', '37.3761', 'Menyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632222', '祁连县', '632200', '祁连', '3', '970', '810400', '中国,青海省,海北藏族自治州,祁连县', '100.246', '38.179', 'Qilian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632223', '海晏县', '632200', '海晏', '3', '970', '812200', '中国,青海省,海北藏族自治州,海晏县', '100.993', '36.899', 'Haiyan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632224', '刚察县', '632200', '刚察', '3', '970', '812300', '中国,青海省,海北藏族自治州,刚察县', '100.147', '37.3216', 'Gangcha', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632300', '黄南藏族自治州', '630000', '黄南', '2', '973', '811300', '中国,青海省,黄南藏族自治州', '102.02', '35.5177', 'Huangnan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632321', '同仁县', '632300', '同仁', '3', '973', '811300', '中国,青海省,黄南藏族自治州,同仁县', '102.018', '35.516', 'Tongren', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632322', '尖扎县', '632300', '尖扎', '3', '973', '811200', '中国,青海省,黄南藏族自治州,尖扎县', '102.034', '35.9395', 'Jianzha', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632323', '泽库县', '632300', '泽库', '3', '973', '811400', '中国,青海省,黄南藏族自治州,泽库县', '101.464', '35.0352', 'Zeku', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632324', '河南蒙古族自治县', '632300', '河南', '3', '973', '811500', '中国,青海省,黄南藏族自治州,河南蒙古族自治县', '101.609', '34.7348', 'Henan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632500', '海南藏族自治州', '630000', '海南', '2', '974', '813000', '中国,青海省,海南藏族自治州', '100.62', '36.2804', 'Hainan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632521', '共和县', '632500', '共和', '3', '974', '813000', '中国,青海省,海南藏族自治州,共和县', '100.62', '36.2841', 'Gonghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632522', '同德县', '632500', '同德', '3', '974', '813200', '中国,青海省,海南藏族自治州,同德县', '100.572', '35.2549', 'Tongde', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632523', '贵德县', '632500', '贵德', '3', '974', '811700', '中国,青海省,海南藏族自治州,贵德县', '101.432', '36.044', 'Guide', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632524', '兴海县', '632500', '兴海', '3', '974', '813300', '中国,青海省,海南藏族自治州,兴海县', '99.9885', '35.5903', 'Xinghai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632525', '贵南县', '632500', '贵南', '3', '974', '813100', '中国,青海省,海南藏族自治州,贵南县', '100.747', '35.5867', 'Guinan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632600', '果洛藏族自治州', '630000', '果洛', '2', '975', '814000', '中国,青海省,果洛藏族自治州', '100.242', '34.4736', 'Golog', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632621', '玛沁县', '632600', '玛沁', '3', '975', '814000', '中国,青海省,果洛藏族自治州,玛沁县', '100.239', '34.4775', 'Maqin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632622', '班玛县', '632600', '班玛', '3', '975', '814300', '中国,青海省,果洛藏族自治州,班玛县', '100.737', '32.9325', 'Banma', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632623', '甘德县', '632600', '甘德', '3', '975', '814100', '中国,青海省,果洛藏族自治州,甘德县', '99.9025', '33.9684', 'Gande', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632624', '达日县', '632600', '达日', '3', '975', '814200', '中国,青海省,果洛藏族自治州,达日县', '99.6518', '33.7519', 'Dari', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632625', '久治县', '632600', '久治', '3', '975', '624700', '中国,青海省,果洛藏族自治州,久治县', '101.483', '33.4299', 'Jiuzhi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632626', '玛多县', '632600', '玛多', '3', '975', '813500', '中国,青海省,果洛藏族自治州,玛多县', '98.21', '34.9157', 'Maduo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632700', '玉树藏族自治州', '630000', '玉树', '2', '976', '815000', '中国,青海省,玉树藏族自治州', '97.0085', '33.004', 'Yushu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632701', '玉树市', '632700', '玉树', '3', '976', '815000', '中国,青海省,玉树藏族自治州,玉树市', '97.0088', '33.0039', 'Yushu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632722', '杂多县', '632700', '杂多', '3', '976', '815300', '中国,青海省,玉树藏族自治州,杂多县', '95.2986', '32.8932', 'Zaduo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632723', '称多县', '632700', '称多', '3', '976', '815100', '中国,青海省,玉树藏族自治州,称多县', '97.1079', '33.369', 'Chenduo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632724', '治多县', '632700', '治多', '3', '976', '815400', '中国,青海省,玉树藏族自治州,治多县', '95.6157', '33.8528', 'Zhiduo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632725', '囊谦县', '632700', '囊谦', '3', '976', '815200', '中国,青海省,玉树藏族自治州,囊谦县', '96.4775', '32.2036', 'Nangqian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632726', '曲麻莱县', '632700', '曲麻莱', '3', '976', '815500', '中国,青海省,玉树藏族自治州,曲麻莱县', '95.7976', '34.1261', 'Qumalai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632800', '海西蒙古族藏族自治州', '630000', '海西', '2', '977', '817000', '中国,青海省,海西蒙古族藏族自治州', '97.3708', '37.3747', 'Haixi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632801', '格尔木市', '632800', '格尔木', '3', '977', '816000', '中国,青海省,海西蒙古族藏族自治州,格尔木市', '94.9033', '36.4024', 'Geermu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632802', '德令哈市', '632800', '德令哈', '3', '977', '817000', '中国,青海省,海西蒙古族藏族自治州,德令哈市', '97.3608', '37.3695', 'Delingha', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632821', '乌兰县', '632800', '乌兰', '3', '977', '817100', '中国,青海省,海西蒙古族藏族自治州,乌兰县', '98.482', '36.9347', 'Wulan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632822', '都兰县', '632800', '都兰', '3', '977', '816100', '中国,青海省,海西蒙古族藏族自治州,都兰县', '98.0923', '36.3013', 'Dulan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('632823', '天峻县', '632800', '天峻', '3', '977', '817200', '中国,青海省,海西蒙古族藏族自治州,天峻县', '99.0245', '37.3033', 'Tianjun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640000', '宁夏回族自治区', '100000', '宁夏', '1', '0', '0', '中国,宁夏回族自治区', '106.278', '38.4664', 'Ningxia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640100', '银川市', '640000', '银川', '2', '951', '750004', '中国,宁夏回族自治区,银川市', '106.278', '38.4664', 'Yinchuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640104', '兴庆区', '640100', '兴庆', '3', '951', '750001', '中国,宁夏回族自治区,银川市,兴庆区', '106.289', '38.4739', 'Xingqing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640105', '西夏区', '640100', '西夏', '3', '951', '750021', '中国,宁夏回族自治区,银川市,西夏区', '106.15', '38.4914', 'Xixia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640106', '金凤区', '640100', '金凤', '3', '951', '750011', '中国,宁夏回族自治区,银川市,金凤区', '106.243', '38.4729', 'Jinfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640121', '永宁县', '640100', '永宁', '3', '951', '750100', '中国,宁夏回族自治区,银川市,永宁县', '106.252', '38.2756', 'Yongning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640122', '贺兰县', '640100', '贺兰', '3', '951', '750200', '中国,宁夏回族自治区,银川市,贺兰县', '106.35', '38.5544', 'Helan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640181', '灵武市', '640100', '灵武', '3', '951', '750004', '中国,宁夏回族自治区,银川市,灵武市', '106.34', '38.1027', 'Lingwu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640200', '石嘴山市', '640000', '石嘴山', '2', '952', '753000', '中国,宁夏回族自治区,石嘴山市', '106.376', '39.0133', 'Shizuishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640202', '大武口区', '640200', '大武口', '3', '952', '753000', '中国,宁夏回族自治区,石嘴山市,大武口区', '106.377', '39.0123', 'Dawukou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640205', '惠农区', '640200', '惠农', '3', '952', '753600', '中国,宁夏回族自治区,石嘴山市,惠农区', '106.711', '39.1319', 'Huinong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640221', '平罗县', '640200', '平罗', '3', '952', '753400', '中国,宁夏回族自治区,石嘴山市,平罗县', '106.545', '38.9043', 'Pingluo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640300', '吴忠市', '640000', '吴忠', '2', '953', '751100', '中国,宁夏回族自治区,吴忠市', '106.199', '37.9862', 'Wuzhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640302', '利通区', '640300', '利通', '3', '953', '751100', '中国,宁夏回族自治区,吴忠市,利通区', '106.203', '37.9851', 'Litong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640303', '红寺堡区', '640300', '红寺堡', '3', '953', '751900', '中国,宁夏回族自治区,吴忠市,红寺堡区', '106.198', '37.9975', 'Hongsibao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640323', '盐池县', '640300', '盐池', '3', '953', '751500', '中国,宁夏回族自治区,吴忠市,盐池县', '107.407', '37.7833', 'Yanchi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640324', '同心县', '640300', '同心', '3', '953', '751300', '中国,宁夏回族自治区,吴忠市,同心县', '105.914', '36.9812', 'Tongxin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640381', '青铜峡市', '640300', '青铜峡', '3', '953', '751600', '中国,宁夏回族自治区,吴忠市,青铜峡市', '106.075', '38.02', 'Qingtongxia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640400', '固原市', '640000', '固原', '2', '954', '756000', '中国,宁夏回族自治区,固原市', '106.285', '36.0046', 'Guyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640402', '原州区', '640400', '原州', '3', '954', '756000', '中国,宁夏回族自治区,固原市,原州区', '106.288', '36.0037', 'Yuanzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640422', '西吉县', '640400', '西吉', '3', '954', '756200', '中国,宁夏回族自治区,固原市,西吉县', '105.731', '35.9662', 'Xiji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640423', '隆德县', '640400', '隆德', '3', '954', '756300', '中国,宁夏回族自治区,固原市,隆德县', '106.124', '35.6172', 'Longde', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640424', '泾源县', '640400', '泾源', '3', '954', '756400', '中国,宁夏回族自治区,固原市,泾源县', '106.339', '35.4907', 'Jingyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640425', '彭阳县', '640400', '彭阳', '3', '954', '756500', '中国,宁夏回族自治区,固原市,彭阳县', '106.645', '35.8508', 'Pengyang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640500', '中卫市', '640000', '中卫', '2', '955', '751700', '中国,宁夏回族自治区,中卫市', '105.19', '37.5149', 'Zhongwei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640502', '沙坡头区', '640500', '沙坡头', '3', '955', '755000', '中国,宁夏回族自治区,中卫市,沙坡头区', '105.19', '37.5104', 'Shapotou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640521', '中宁县', '640500', '中宁', '3', '955', '751200', '中国,宁夏回族自治区,中卫市,中宁县', '105.685', '37.4915', 'Zhongning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('640522', '海原县', '640500', '海原', '3', '955', '751800', '中国,宁夏回族自治区,中卫市,海原县', '105.647', '36.565', 'Haiyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('650000', '新疆维吾尔自治区', '100000', '新疆', '1', '0', '0', '中国,新疆维吾尔自治区', '87.6177', '43.7928', 'Xinjiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('650100', '乌鲁木齐市', '650000', '乌鲁木齐', '2', '991', '830002', '中国,新疆维吾尔自治区,乌鲁木齐市', '87.6177', '43.7928', 'Urumqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('650102', '天山区', '650100', '天山', '3', '991', '830002', '中国,新疆维吾尔自治区,乌鲁木齐市,天山区', '87.6317', '43.7944', 'Tianshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('650103', '沙依巴克区', '650100', '沙依巴克', '3', '991', '830000', '中国,新疆维吾尔自治区,乌鲁木齐市,沙依巴克区', '87.5979', '43.8012', 'Shayibake', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('650104', '新市区', '650100', '新市', '3', '991', '830011', '中国,新疆维吾尔自治区,乌鲁木齐市,新市区', '87.5741', '43.8435', 'Xinshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('650105', '水磨沟区', '650100', '水磨沟', '3', '991', '830017', '中国,新疆维吾尔自治区,乌鲁木齐市,水磨沟区', '87.6425', '43.8325', 'Shuimogou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('650106', '头屯河区', '650100', '头屯河', '3', '991', '830022', '中国,新疆维吾尔自治区,乌鲁木齐市,头屯河区', '87.2914', '43.8549', 'Toutunhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('650107', '达坂城区', '650100', '达坂城', '3', '991', '830039', '中国,新疆维吾尔自治区,乌鲁木齐市,达坂城区', '88.307', '43.358', 'Dabancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('650109', '米东区', '650100', '米东', '3', '991', '830019', '中国,新疆维吾尔自治区,乌鲁木齐市,米东区', '87.6858', '43.9474', 'Midong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('650121', '乌鲁木齐县', '650100', '乌鲁木齐', '3', '991', '830063', '中国,新疆维吾尔自治区,乌鲁木齐市,乌鲁木齐县', '87.4094', '43.4712', 'Wulumuqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('650200', '克拉玛依市', '650000', '克拉玛依', '2', '990', '834000', '中国,新疆维吾尔自治区,克拉玛依市', '84.8739', '45.5959', 'Karamay', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('650202', '独山子区', '650200', '独山子', '3', '992', '834021', '中国,新疆维吾尔自治区,克拉玛依市,独山子区', '84.8867', '44.3287', 'Dushanzi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('650203', '克拉玛依区', '650200', '克拉玛依', '3', '990', '834000', '中国,新疆维吾尔自治区,克拉玛依市,克拉玛依区', '84.8623', '45.5909', 'Kelamayi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('650204', '白碱滩区', '650200', '白碱滩', '3', '990', '834008', '中国,新疆维吾尔自治区,克拉玛依市,白碱滩区', '85.1324', '45.6877', 'Baijiantan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('650205', '乌尔禾区', '650200', '乌尔禾', '3', '990', '834012', '中国,新疆维吾尔自治区,克拉玛依市,乌尔禾区', '85.6914', '46.0901', 'Wuerhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652100', '吐鲁番地区', '650000', '吐鲁番', '2', '995', '838000', '中国,新疆维吾尔自治区,吐鲁番地区', '89.1841', '42.9476', 'Turpan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652101', '吐鲁番市', '652100', '吐鲁番', '3', '995', '838000', '中国,新疆维吾尔自治区,吐鲁番地区,吐鲁番市', '89.1858', '42.9351', 'Tulufan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652122', '鄯善县', '652100', '鄯善', '3', '995', '838200', '中国,新疆维吾尔自治区,吐鲁番地区,鄯善县', '90.214', '42.8635', 'Shanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652123', '托克逊县', '652100', '托克逊', '3', '995', '838100', '中国,新疆维吾尔自治区,吐鲁番地区,托克逊县', '88.6582', '42.7923', 'Tuokexun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652200', '哈密地区', '650000', '哈密', '2', '902', '839000', '中国,新疆维吾尔自治区,哈密地区', '93.5132', '42.8332', 'Hami', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652201', '哈密市', '652200', '哈密', '3', '902', '839000', '中国,新疆维吾尔自治区,哈密地区,哈密市', '93.5145', '42.827', 'Hami', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652222', '巴里坤哈萨克自治县', '652200', '巴里坤', '3', '902', '839200', '中国,新疆维吾尔自治区,哈密地区,巴里坤哈萨克自治县', '93.0124', '43.5999', 'Balikun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652223', '伊吾县', '652200', '伊吾', '3', '902', '839300', '中国,新疆维吾尔自治区,哈密地区,伊吾县', '94.694', '43.2537', 'Yiwu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652300', '昌吉回族自治州', '650000', '昌吉', '2', '994', '831100', '中国,新疆维吾尔自治区,昌吉回族自治州', '87.304', '44.0146', 'Changji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652301', '昌吉市', '652300', '昌吉', '3', '994', '831100', '中国,新疆维吾尔自治区,昌吉回族自治州,昌吉市', '87.3025', '44.0127', 'Changji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652302', '阜康市', '652300', '阜康', '3', '994', '831500', '中国,新疆维吾尔自治区,昌吉回族自治州,阜康市', '87.9853', '44.1584', 'Fukang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652323', '呼图壁县', '652300', '呼图壁', '3', '994', '831200', '中国,新疆维吾尔自治区,昌吉回族自治州,呼图壁县', '86.8989', '44.1898', 'Hutubi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652324', '玛纳斯县', '652300', '玛纳斯', '3', '994', '832200', '中国,新疆维吾尔自治区,昌吉回族自治州,玛纳斯县', '86.2145', '44.3044', 'Manasi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652325', '奇台县', '652300', '奇台', '3', '994', '831800', '中国,新疆维吾尔自治区,昌吉回族自治州,奇台县', '89.5932', '44.0222', 'Qitai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652327', '吉木萨尔县', '652300', '吉木萨尔', '3', '994', '831700', '中国,新疆维吾尔自治区,昌吉回族自治州,吉木萨尔县', '89.1808', '44.0005', 'Jimusaer', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652328', '木垒哈萨克自治县', '652300', '木垒', '3', '994', '831900', '中国,新疆维吾尔自治区,昌吉回族自治州,木垒哈萨克自治县', '90.289', '43.8351', 'Mulei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652700', '博尔塔拉蒙古自治州', '650000', '博尔塔拉', '2', '909', '833400', '中国,新疆维吾尔自治区,博尔塔拉蒙古自治州', '82.0748', '44.9033', 'Bortala', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652701', '博乐市', '652700', '博乐', '3', '909', '833400', '中国,新疆维吾尔自治区,博尔塔拉蒙古自治州,博乐市', '82.0713', '44.9005', 'Bole', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652702', '阿拉山口市', '652700', '阿拉山口', '3', '909', '833400', '中国,新疆维吾尔自治区,博尔塔拉蒙古自治州,阿拉山口市', '82.5677', '45.1706', 'Alashankou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652722', '精河县', '652700', '精河', '3', '909', '833300', '中国,新疆维吾尔自治区,博尔塔拉蒙古自治州,精河县', '82.8942', '44.6077', 'Jinghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652723', '温泉县', '652700', '温泉', '3', '909', '833500', '中国,新疆维吾尔自治区,博尔塔拉蒙古自治州,温泉县', '81.0313', '44.9737', 'Wenquan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652800', '巴音郭楞蒙古自治州', '650000', '巴音郭楞', '2', '996', '841000', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州', '86.151', '41.7686', 'Bayingol', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652801', '库尔勒市', '652800', '库尔勒', '3', '996', '841000', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州,库尔勒市', '86.1553', '41.766', 'Kuerle', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652822', '轮台县', '652800', '轮台', '3', '996', '841600', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州,轮台县', '84.261', '41.7764', 'Luntai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652823', '尉犁县', '652800', '尉犁', '3', '996', '841500', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州,尉犁县', '86.259', '41.3363', 'Yuli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652824', '若羌县', '652800', '若羌', '3', '996', '841800', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州,若羌县', '88.1681', '39.0179', 'Ruoqiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652825', '且末县', '652800', '且末', '3', '996', '841900', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州,且末县', '85.5297', '38.1453', 'Qiemo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652826', '焉耆回族自治县', '652800', '焉耆', '3', '996', '841100', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州,焉耆回族自治县', '86.5744', '42.059', 'Yanqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652827', '和静县', '652800', '和静', '3', '996', '841300', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州,和静县', '86.3961', '42.3184', 'Hejing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652828', '和硕县', '652800', '和硕', '3', '996', '841200', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州,和硕县', '86.8639', '42.2681', 'Heshuo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652829', '博湖县', '652800', '博湖', '3', '996', '841400', '中国,新疆维吾尔自治区,巴音郭楞蒙古自治州,博湖县', '86.6333', '41.9801', 'Bohu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652900', '阿克苏地区', '650000', '阿克苏', '2', '997', '843000', '中国,新疆维吾尔自治区,阿克苏地区', '80.2651', '41.1707', 'Aksu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652901', '阿克苏市', '652900', '阿克苏', '3', '997', '843000', '中国,新疆维吾尔自治区,阿克苏地区,阿克苏市', '80.2634', '41.1675', 'Akesu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652922', '温宿县', '652900', '温宿', '3', '997', '843100', '中国,新疆维吾尔自治区,阿克苏地区,温宿县', '80.2417', '41.2768', 'Wensu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652923', '库车县', '652900', '库车', '3', '997', '842000', '中国,新疆维吾尔自治区,阿克苏地区,库车县', '82.9621', '41.7179', 'Kuche', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652924', '沙雅县', '652900', '沙雅', '3', '997', '842200', '中国,新疆维吾尔自治区,阿克苏地区,沙雅县', '82.7813', '41.225', 'Shaya', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652925', '新和县', '652900', '新和', '3', '997', '842100', '中国,新疆维吾尔自治区,阿克苏地区,新和县', '82.6105', '41.5496', 'Xinhe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652926', '拜城县', '652900', '拜城', '3', '997', '842300', '中国,新疆维吾尔自治区,阿克苏地区,拜城县', '81.8756', '41.798', 'Baicheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652927', '乌什县', '652900', '乌什', '3', '997', '843400', '中国,新疆维吾尔自治区,阿克苏地区,乌什县', '79.2294', '41.2157', 'Wushi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652928', '阿瓦提县', '652900', '阿瓦提', '3', '997', '843200', '中国,新疆维吾尔自治区,阿克苏地区,阿瓦提县', '80.3834', '40.6393', 'Awati', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('652929', '柯坪县', '652900', '柯坪', '3', '997', '843600', '中国,新疆维吾尔自治区,阿克苏地区,柯坪县', '79.0475', '40.5059', 'Keping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653000', '克孜勒苏柯尔克孜自治州', '650000', '克孜勒苏', '2', '908', '845350', '中国,新疆维吾尔自治区,克孜勒苏柯尔克孜自治州', '76.1728', '39.7134', 'Kizilsu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653001', '阿图什市', '653000', '阿图什', '3', '908', '845350', '中国,新疆维吾尔自治区,克孜勒苏柯尔克孜自治州,阿图什市', '76.1683', '39.7161', 'Atushi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653022', '阿克陶县', '653000', '阿克陶', '3', '908', '845550', '中国,新疆维吾尔自治区,克孜勒苏柯尔克孜自治州,阿克陶县', '75.9469', '39.1489', 'Aketao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653023', '阿合奇县', '653000', '阿合奇', '3', '997', '843500', '中国,新疆维吾尔自治区,克孜勒苏柯尔克孜自治州,阿合奇县', '78.4485', '40.9395', 'Aheqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653024', '乌恰县', '653000', '乌恰', '3', '908', '845450', '中国,新疆维吾尔自治区,克孜勒苏柯尔克孜自治州,乌恰县', '75.2584', '39.7198', 'Wuqia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653100', '喀什地区', '650000', '喀什', '2', '998', '844000', '中国,新疆维吾尔自治区,喀什地区', '75.9891', '39.4677', 'Kashgar', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653101', '喀什市', '653100', '喀什', '3', '998', '844000', '中国,新疆维吾尔自治区,喀什地区,喀什市', '75.9938', '39.4677', 'Kashi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653121', '疏附县', '653100', '疏附', '3', '998', '844100', '中国,新疆维吾尔自治区,喀什地区,疏附县', '75.8603', '39.3753', 'Shufu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653122', '疏勒县', '653100', '疏勒', '3', '998', '844200', '中国,新疆维吾尔自治区,喀什地区,疏勒县', '76.054', '39.4062', 'Shule', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653123', '英吉沙县', '653100', '英吉沙', '3', '998', '844500', '中国,新疆维吾尔自治区,喀什地区,英吉沙县', '76.1757', '38.9297', 'Yingjisha', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653124', '泽普县', '653100', '泽普', '3', '998', '844800', '中国,新疆维吾尔自治区,喀什地区,泽普县', '77.2714', '38.1894', 'Zepu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653125', '莎车县', '653100', '莎车', '3', '998', '844700', '中国,新疆维吾尔自治区,喀什地区,莎车县', '77.2432', '38.416', 'Shache', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653126', '叶城县', '653100', '叶城', '3', '998', '844900', '中国,新疆维吾尔自治区,喀什地区,叶城县', '77.4166', '37.8832', 'Yecheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653127', '麦盖提县', '653100', '麦盖提', '3', '998', '844600', '中国,新疆维吾尔自治区,喀什地区,麦盖提县', '77.6422', '38.8966', 'Maigaiti', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653128', '岳普湖县', '653100', '岳普湖', '3', '998', '844400', '中国,新疆维吾尔自治区,喀什地区,岳普湖县', '76.7723', '39.2356', 'Yuepuhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653129', '伽师县', '653100', '伽师', '3', '998', '844300', '中国,新疆维吾尔自治区,喀什地区,伽师县', '76.7237', '39.488', 'Jiashi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653130', '巴楚县', '653100', '巴楚', '3', '998', '843800', '中国,新疆维吾尔自治区,喀什地区,巴楚县', '78.5489', '39.7855', 'Bachu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653131', '塔什库尔干塔吉克自治县', '653100', '塔什库尔干塔吉克', '3', '998', '845250', '中国,新疆维吾尔自治区,喀什地区,塔什库尔干塔吉克自治县', '75.232', '37.7789', 'Tashikuergantajike', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653200', '和田地区', '650000', '和田', '2', '903', '848000', '中国,新疆维吾尔自治区,和田地区', '79.9253', '37.1107', 'Hotan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653201', '和田市', '653200', '和田市', '3', '903', '848000', '中国,新疆维吾尔自治区,和田地区,和田市', '79.9135', '37.1121', 'Hetianshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653221', '和田县', '653200', '和田县', '3', '903', '848000', '中国,新疆维吾尔自治区,和田地区,和田县', '79.8287', '37.0892', 'Hetianxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653222', '墨玉县', '653200', '墨玉', '3', '903', '848100', '中国,新疆维吾尔自治区,和田地区,墨玉县', '79.7403', '37.2725', 'Moyu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653223', '皮山县', '653200', '皮山', '3', '903', '845150', '中国,新疆维吾尔自治区,和田地区,皮山县', '78.2812', '37.6201', 'Pishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653224', '洛浦县', '653200', '洛浦', '3', '903', '848200', '中国,新疆维吾尔自治区,和田地区,洛浦县', '80.1854', '37.0736', 'Luopu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653225', '策勒县', '653200', '策勒', '3', '903', '848300', '中国,新疆维吾尔自治区,和田地区,策勒县', '80.81', '36.9984', 'Cele', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653226', '于田县', '653200', '于田', '3', '903', '848400', '中国,新疆维吾尔自治区,和田地区,于田县', '81.6672', '36.854', 'Yutian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('653227', '民丰县', '653200', '民丰', '3', '903', '848500', '中国,新疆维吾尔自治区,和田地区,民丰县', '82.6844', '37.0658', 'Minfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654000', '伊犁哈萨克自治州', '650000', '伊犁', '2', '999', '835100', '中国,新疆维吾尔自治区,伊犁哈萨克自治州', '81.3179', '43.9219', 'Ili', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654002', '伊宁市', '654000', '伊宁', '3', '999', '835000', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,伊宁市', '81.3293', '43.9129', 'Yining', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654003', '奎屯市', '654000', '奎屯', '3', '992', '833200', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,奎屯市', '84.9023', '44.425', 'Kuitun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654004', '霍尔果斯市', '654000', '霍尔果斯', '3', '999', '835221', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,霍尔果斯市', '80.4182', '44.2058', 'Huoerguosi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654021', '伊宁县', '654000', '伊宁', '3', '999', '835100', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,伊宁县', '81.5276', '43.9786', 'Yining', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654022', '察布查尔锡伯自治县', '654000', '察布查尔锡伯', '3', '999', '835300', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,察布查尔锡伯自治县', '81.1496', '43.8402', 'Chabuchaerxibo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654023', '霍城县', '654000', '霍城', '3', '999', '835200', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,霍城县', '80.8783', '44.0533', 'Huocheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654024', '巩留县', '654000', '巩留', '3', '999', '835400', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,巩留县', '82.2285', '43.4843', 'Gongliu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654025', '新源县', '654000', '新源', '3', '999', '835800', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,新源县', '83.2609', '43.4284', 'Xinyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654026', '昭苏县', '654000', '昭苏', '3', '999', '835600', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,昭苏县', '81.1307', '43.1583', 'Zhaosu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654027', '特克斯县', '654000', '特克斯', '3', '999', '835500', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,特克斯县', '81.84', '43.2194', 'Tekesi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654028', '尼勒克县', '654000', '尼勒克', '3', '999', '835700', '中国,新疆维吾尔自治区,伊犁哈萨克自治州,尼勒克县', '82.5118', '43.799', 'Nileke', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654200', '塔城地区', '650000', '塔城', '2', '901', '834700', '中国,新疆维吾尔自治区,塔城地区', '82.9857', '46.7463', 'Qoqek', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654201', '塔城市', '654200', '塔城', '3', '901', '834700', '中国,新疆维吾尔自治区,塔城地区,塔城市', '82.9789', '46.7485', 'Tacheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654202', '乌苏市', '654200', '乌苏', '3', '992', '833000', '中国,新疆维吾尔自治区,塔城地区,乌苏市', '84.6826', '44.4373', 'Wusu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654221', '额敏县', '654200', '额敏', '3', '901', '834600', '中国,新疆维吾尔自治区,塔城地区,额敏县', '83.6287', '46.5284', 'Emin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654223', '沙湾县', '654200', '沙湾', '3', '993', '832100', '中国,新疆维吾尔自治区,塔城地区,沙湾县', '85.6193', '44.3314', 'Shawan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654224', '托里县', '654200', '托里', '3', '901', '834500', '中国,新疆维吾尔自治区,塔城地区,托里县', '83.6059', '45.9362', 'Tuoli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654225', '裕民县', '654200', '裕民', '3', '901', '834800', '中国,新疆维吾尔自治区,塔城地区,裕民县', '82.99', '46.2038', 'Yumin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654226', '和布克赛尔蒙古自治县', '654200', '和布克赛尔', '3', '990', '834400', '中国,新疆维吾尔自治区,塔城地区,和布克赛尔蒙古自治县', '85.7266', '46.7936', 'Hebukesaier', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654300', '阿勒泰地区', '650000', '阿勒泰', '2', '906', '836500', '中国,新疆维吾尔自治区,阿勒泰地区', '88.1396', '47.8484', 'Altay', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654301', '阿勒泰市', '654300', '阿勒泰', '3', '906', '836500', '中国,新疆维吾尔自治区,阿勒泰地区,阿勒泰市', '88.1391', '47.8317', 'Aletai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654321', '布尔津县', '654300', '布尔津', '3', '906', '836600', '中国,新疆维吾尔自治区,阿勒泰地区,布尔津县', '86.8575', '47.7006', 'Buerjin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654322', '富蕴县', '654300', '富蕴', '3', '906', '836100', '中国,新疆维吾尔自治区,阿勒泰地区,富蕴县', '89.5268', '46.9944', 'Fuyun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654323', '福海县', '654300', '福海', '3', '906', '836400', '中国,新疆维吾尔自治区,阿勒泰地区,福海县', '87.4951', '47.1106', 'Fuhai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654324', '哈巴河县', '654300', '哈巴河', '3', '906', '836700', '中国,新疆维吾尔自治区,阿勒泰地区,哈巴河县', '86.4209', '48.0605', 'Habahe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654325', '青河县', '654300', '青河', '3', '906', '836200', '中国,新疆维吾尔自治区,阿勒泰地区,青河县', '90.383', '46.6738', 'Qinghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('654326', '吉木乃县', '654300', '吉木乃', '3', '906', '836800', '中国,新疆维吾尔自治区,阿勒泰地区,吉木乃县', '85.8781', '47.4336', 'Jimunai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('659001', '石河子市', '650000', '石河子', '2', '993', '832000', '中国,新疆维吾尔自治区,石河子市', '86.0411', '44.3059', 'Shihezi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('659002', '阿拉尔市', '650000', '阿拉尔', '2', '997', '843300', '中国,新疆维吾尔自治区,阿拉尔市', '81.2859', '40.5419', 'Aral', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('659003', '图木舒克市', '650000', '图木舒克', '2', '998', '843806', '中国,新疆维吾尔自治区,图木舒克市', '79.078', '39.8673', 'Tumxuk', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('659004', '五家渠市', '650000', '五家渠', '2', '994', '831300', '中国,新疆维吾尔自治区,五家渠市', '87.5269', '44.1674', 'Wujiaqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('659005', '北屯市', '650000', '北屯', '2', '906', '836000', '中国,新疆维吾尔自治区,北屯市', '87.8085', '47.3623', 'Beitun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('659006', '铁门关市', '650000', '铁门关', '2', '906', '836000', '中国,新疆维吾尔自治区,铁门关市', '86.1947', '41.811', 'Tiemenguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('659007', '双河市', '650000', '双河', '2', '909', '833408', '中国,新疆维吾尔自治区,双河市', '91.1322', '29.6604', 'Shuanghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710000', '台湾', '100000', '台湾', '1', '0', '0', '中国,台湾', '121.509', '25.0443', 'Taiwan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710100', '台北市', '710000', '台北', '2', '2', '1', '中国,台湾,台北市', '121.565', '25.0378', 'Taipei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710101', '松山区', '710100', '松山', '3', '2', '105', '中国,台湾,台北市,松山区', '121.577', '25.0497', 'Songshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710102', '信义区', '710100', '信义', '3', '2', '110', '中国,台湾,台北市,信义区', '121.751', '25.1294', 'Xinyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710103', '大安区', '710100', '大安', '3', '2', '106', '中国,台湾,台北市,大安区', '121.535', '25.0264', 'Daan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710104', '中山区', '710100', '中山', '3', '2', '104', '中国,台湾,台北市,中山区', '121.533', '25.0644', 'Zhongshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710105', '中正区', '710100', '中正', '3', '2', '100', '中国,台湾,台北市,中正区', '121.518', '25.0324', 'Zhongzheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710106', '大同区', '710100', '大同', '3', '2', '103', '中国,台湾,台北市,大同区', '121.516', '25.066', 'Datong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710107', '万华区', '710100', '万华', '3', '2', '108', '中国,台湾,台北市,万华区', '121.499', '25.0319', 'Wanhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710108', '文山区', '710100', '文山', '3', '2', '116', '中国,台湾,台北市,文山区', '121.57', '24.9898', 'Wenshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710109', '南港区', '710100', '南港', '3', '2', '115', '中国,台湾,台北市,南港区', '121.607', '25.0547', 'Nangang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710110', '内湖区', '710100', '内湖', '3', '2', '114', '中国,台湾,台北市,内湖区', '121.589', '25.0697', 'Nahu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710111', '士林区', '710100', '士林', '3', '2', '111', '中国,台湾,台北市,士林区', '121.52', '25.0928', 'Shilin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710112', '北投区', '710100', '北投', '3', '2', '112', '中国,台湾,台北市,北投区', '121.501', '25.1324', 'Beitou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710200', '高雄市', '710000', '高雄', '2', '7', '8', '中国,台湾,高雄市', '120.312', '22.6209', 'Kaohsiung', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710201', '盐埕区', '710200', '盐埕', '3', '7', '803', '中国,台湾,高雄市,盐埕区', '120.287', '22.6247', 'Yancheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710202', '鼓山区', '710200', '鼓山', '3', '7', '804', '中国,台湾,高雄市,鼓山区', '120.281', '22.6368', 'Gushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710203', '左营区', '710200', '左营', '3', '7', '813', '中国,台湾,高雄市,左营区', '120.295', '22.6901', 'Zuoying', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710204', '楠梓区', '710200', '楠梓', '3', '7', '811', '中国,台湾,高雄市,楠梓区', '120.326', '22.7284', 'Nanzi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710205', '三民区', '710200', '三民', '3', '7', '807', '中国,台湾,高雄市,三民区', '120.3', '22.6477', 'Sanmin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710206', '新兴区', '710200', '新兴', '3', '7', '800', '中国,台湾,高雄市,新兴区', '120.31', '22.6311', 'Xinxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710207', '前金区', '710200', '前金', '3', '7', '801', '中国,台湾,高雄市,前金区', '120.294', '22.6274', 'Qianjin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710208', '苓雅区', '710200', '苓雅', '3', '7', '802', '中国,台湾,高雄市,苓雅区', '120.312', '22.6218', 'Lingya', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710209', '前镇区', '710200', '前镇', '3', '7', '806', '中国,台湾,高雄市,前镇区', '120.319', '22.5864', 'Qianzhen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710210', '旗津区', '710200', '旗津', '3', '7', '805', '中国,台湾,高雄市,旗津区', '120.284', '22.5906', 'Qijin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710211', '小港区', '710200', '小港', '3', '7', '812', '中国,台湾,高雄市,小港区', '120.338', '22.5654', 'Xiaogang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710212', '凤山区', '710200', '凤山', '3', '7', '830', '中国,台湾,高雄市,凤山区', '120.357', '22.6269', 'Fengshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710213', '林园区', '710200', '林园', '3', '7', '832', '中国,台湾,高雄市,林园区', '120.396', '22.5015', 'Linyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710214', '大寮区', '710200', '大寮', '3', '7', '831', '中国,台湾,高雄市,大寮区', '120.395', '22.6054', 'Daliao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710215', '大树区', '710200', '大树', '3', '7', '840', '中国,台湾,高雄市,大树区', '120.433', '22.6934', 'Dashu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710216', '大社区', '710200', '大社', '3', '7', '815', '中国,台湾,高雄市,大社区', '120.347', '22.73', 'Dashe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710217', '仁武区', '710200', '仁武', '3', '7', '814', '中国,台湾,高雄市,仁武区', '120.348', '22.7019', 'Renwu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710218', '鸟松区', '710200', '鸟松', '3', '7', '833', '中国,台湾,高雄市,鸟松区', '120.364', '22.6593', 'Niaosong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710219', '冈山区', '710200', '冈山', '3', '7', '820', '中国,台湾,高雄市,冈山区', '120.296', '22.7968', 'Gangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710220', '桥头区', '710200', '桥头', '3', '7', '825', '中国,台湾,高雄市,桥头区', '120.306', '22.7575', 'Qiaotou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710221', '燕巢区', '710200', '燕巢', '3', '7', '824', '中国,台湾,高雄市,燕巢区', '120.362', '22.7934', 'Yanchao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710222', '田寮区', '710200', '田寮', '3', '7', '823', '中国,台湾,高雄市,田寮区', '120.36', '22.8693', 'Tianliao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710223', '阿莲区', '710200', '阿莲', '3', '7', '822', '中国,台湾,高雄市,阿莲区', '120.327', '22.8837', 'Alian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710224', '路竹区', '710200', '路竹', '3', '7', '821', '中国,台湾,高雄市,路竹区', '120.262', '22.8569', 'Luzhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710225', '湖内区', '710200', '湖内', '3', '7', '829', '中国,台湾,高雄市,湖内区', '120.212', '22.9082', 'Huna', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710226', '茄萣区', '710200', '茄萣', '3', '7', '852', '中国,台湾,高雄市,茄萣区', '120.183', '22.9066', 'Qieding', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710227', '永安区', '710200', '永安', '3', '7', '828', '中国,台湾,高雄市,永安区', '120.225', '22.8186', 'Yongan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710228', '弥陀区', '710200', '弥陀', '3', '7', '827', '中国,台湾,高雄市,弥陀区', '120.247', '22.7829', 'Mituo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710229', '梓官区', '710200', '梓官', '3', '7', '826', '中国,台湾,高雄市,梓官区', '120.267', '22.7605', 'Ziguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710230', '旗山区', '710200', '旗山', '3', '7', '842', '中国,台湾,高雄市,旗山区', '120.484', '22.8885', 'Qishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710231', '美浓区', '710200', '美浓', '3', '7', '843', '中国,台湾,高雄市,美浓区', '120.542', '22.8979', 'Meinong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710232', '六龟区', '710200', '六龟', '3', '7', '844', '中国,台湾,高雄市,六龟区', '120.633', '22.9979', 'Liugui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710233', '甲仙区', '710200', '甲仙', '3', '7', '847', '中国,台湾,高雄市,甲仙区', '120.591', '23.0847', 'Jiaxian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710234', '杉林区', '710200', '杉林', '3', '7', '846', '中国,台湾,高雄市,杉林区', '120.539', '22.9707', 'Shanlin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710235', '内门区', '710200', '内门', '3', '7', '845', '中国,台湾,高雄市,内门区', '120.462', '22.9434', 'Namen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710236', '茂林区', '710200', '茂林', '3', '7', '851', '中国,台湾,高雄市,茂林区', '120.663', '22.8862', 'Maolin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710237', '桃源区', '710200', '桃源', '3', '7', '848', '中国,台湾,高雄市,桃源区', '120.76', '23.1591', 'Taoyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710238', '那玛夏区', '710200', '那玛夏', '3', '7', '849', '中国,台湾,高雄市,那玛夏区', '120.693', '23.217', 'Namaxia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710300', '基隆市', '710000', '基隆', '2', '2', '2', '中国,台湾,基隆市', '121.746', '25.1307', 'Keelung', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710301', '中正区', '710300', '中正', '3', '2', '202', '中国,台湾,基隆市,中正区', '121.518', '25.0324', 'Zhongzheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710302', '七堵区', '710300', '七堵', '3', '2', '206', '中国,台湾,基隆市,七堵区', '121.713', '25.0957', 'Qidu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710303', '暖暖区', '710300', '暖暖', '3', '2', '205', '中国,台湾,基隆市,暖暖区', '121.736', '25.0998', 'Nuannuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710304', '仁爱区', '710300', '仁爱', '3', '2', '200', '中国,台湾,基隆市,仁爱区', '121.741', '25.1275', 'Renai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710305', '中山区', '710300', '中山', '3', '2', '203', '中国,台湾,基隆市,中山区', '121.739', '25.134', 'Zhongshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710306', '安乐区', '710300', '安乐', '3', '2', '204', '中国,台湾,基隆市,安乐区', '121.723', '25.1209', 'Anle', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710307', '信义区', '710300', '信义', '3', '2', '201', '中国,台湾,基隆市,信义区', '121.751', '25.1294', 'Xinyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710400', '台中市', '710000', '台中', '2', '4', '4', '中国,台湾,台中市', '120.679', '24.1386', 'Taichung', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710401', '中区', '710400', '中区', '3', '4', '400', '中国,台湾,台中市,中区', '120.68', '24.1438', 'Zhongqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710402', '东区', '710400', '东区', '3', '4', '401', '中国,台湾,台中市,东区', '120.704', '24.1366', 'Dongqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710403', '南区', '710400', '南区', '3', '4', '402', '中国,台湾,台中市,南区', '120.189', '22.9609', 'Nanqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710404', '西区', '710400', '西区', '3', '4', '403', '中国,台湾,台中市,西区', '120.671', '24.1414', 'Xiqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710405', '北区', '710400', '北区', '3', '4', '404', '中国,台湾,台中市,北区', '120.682', '24.166', 'Beiqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710406', '西屯区', '710400', '西屯', '3', '4', '407', '中国,台湾,台中市,西屯区', '120.64', '24.1813', 'Xitun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710407', '南屯区', '710400', '南屯', '3', '4', '408', '中国,台湾,台中市,南屯区', '120.643', '24.1383', 'Nantun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710408', '北屯区', '710400', '北屯', '3', '4', '406', '中国,台湾,台中市,北屯区', '120.686', '24.1822', 'Beitun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710409', '丰原区', '710400', '丰原', '3', '4', '420', '中国,台湾,台中市,丰原区', '120.718', '24.2422', 'Fengyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710410', '东势区', '710400', '东势', '3', '4', '423', '中国,台湾,台中市,东势区', '120.828', '24.2586', 'Dongshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710411', '大甲区', '710400', '大甲', '3', '4', '437', '中国,台湾,台中市,大甲区', '120.622', '24.3489', 'Dajia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710412', '清水区', '710400', '清水', '3', '4', '436', '中国,台湾,台中市,清水区', '120.56', '24.2687', 'Qingshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710413', '沙鹿区', '710400', '沙鹿', '3', '4', '433', '中国,台湾,台中市,沙鹿区', '120.566', '24.2335', 'Shalu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710414', '梧栖区', '710400', '梧栖', '3', '4', '435', '中国,台湾,台中市,梧栖区', '120.532', '24.255', 'Wuqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710415', '后里区', '710400', '后里', '3', '4', '421', '中国,台湾,台中市,后里区', '120.711', '24.3049', 'Houli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710416', '神冈区', '710400', '神冈', '3', '4', '429', '中国,台湾,台中市,神冈区', '120.662', '24.2578', 'Shengang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710417', '潭子区', '710400', '潭子', '3', '4', '427', '中国,台湾,台中市,潭子区', '120.705', '24.2095', 'Tanzi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710418', '大雅区', '710400', '大雅', '3', '4', '428', '中国,台湾,台中市,大雅区', '120.648', '24.2292', 'Daya', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710419', '新社区', '710400', '新社', '3', '4', '426', '中国,台湾,台中市,新社区', '120.81', '24.2341', 'Xinshe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710420', '石冈区', '710400', '石冈', '3', '4', '422', '中国,台湾,台中市,石冈区', '120.78', '24.275', 'Shigang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710421', '外埔区', '710400', '外埔', '3', '4', '438', '中国,台湾,台中市,外埔区', '120.654', '24.332', 'Waipu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710422', '大安区', '710400', '大安', '3', '4', '439', '中国,台湾,台中市,大安区', '120.587', '24.3461', 'Daan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710423', '乌日区', '710400', '乌日', '3', '4', '414', '中国,台湾,台中市,乌日区', '120.624', '24.1045', 'Wuri', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710424', '大肚区', '710400', '大肚', '3', '4', '432', '中国,台湾,台中市,大肚区', '120.541', '24.1537', 'Dadu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710425', '龙井区', '710400', '龙井', '3', '4', '434', '中国,台湾,台中市,龙井区', '120.546', '24.1927', 'Longjing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710426', '雾峰区', '710400', '雾峰', '3', '4', '413', '中国,台湾,台中市,雾峰区', '120.7', '24.0615', 'Wufeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710427', '太平区', '710400', '太平', '3', '4', '411', '中国,台湾,台中市,太平区', '120.719', '24.1265', 'Taiping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710428', '大里区', '710400', '大里', '3', '4', '412', '中国,台湾,台中市,大里区', '120.678', '24.0994', 'Dali', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710429', '和平区', '710400', '和平', '3', '4', '424', '中国,台湾,台中市,和平区', '120.883', '24.1748', 'Heping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710500', '台南市', '710000', '台南', '2', '6', '7', '中国,台湾,台南市', '120.279', '23.1725', 'Tainan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710501', '东区', '710500', '东区', '3', '6', '701', '中国,台湾,台南市,东区', '120.224', '22.9801', 'Dongqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710502', '南区', '710500', '南区', '3', '6', '702', '中国,台湾,台南市,南区', '120.189', '22.9609', 'Nanqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710504', '北区', '710500', '北区', '3', '6', '704', '中国,台湾,台南市,北区', '120.682', '24.166', 'Beiqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710506', '安南区', '710500', '安南', '3', '6', '709', '中国,台湾,台南市,安南区', '120.185', '23.0472', 'Annan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710507', '安平区', '710500', '安平', '3', '6', '708', '中国,台湾,台南市,安平区', '120.167', '23.0008', 'Anping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710508', '中西区', '710500', '中西', '3', '6', '700', '中国,台湾,台南市,中西区', '120.206', '22.9922', 'Zhongxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710509', '新营区', '710500', '新营', '3', '6', '730', '中国,台湾,台南市,新营区', '120.317', '23.3103', 'Xinying', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710510', '盐水区', '710500', '盐水', '3', '6', '737', '中国,台湾,台南市,盐水区', '120.266', '23.3198', 'Yanshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710511', '白河区', '710500', '白河', '3', '6', '732', '中国,台湾,台南市,白河区', '120.416', '23.3512', 'Baihe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710512', '柳营区', '710500', '柳营', '3', '6', '736', '中国,台湾,台南市,柳营区', '120.311', '23.2781', 'Liuying', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710513', '后壁区', '710500', '后壁', '3', '6', '731', '中国,台湾,台南市,后壁区', '120.363', '23.3667', 'Houbi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710514', '东山区', '710500', '东山', '3', '6', '733', '中国,台湾,台南市,东山区', '120.404', '23.3261', 'Dongshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710515', '麻豆区', '710500', '麻豆', '3', '6', '721', '中国,台湾,台南市,麻豆区', '120.248', '23.1817', 'Madou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710516', '下营区', '710500', '下营', '3', '6', '735', '中国,台湾,台南市,下营区', '120.264', '23.2354', 'Xiaying', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710517', '六甲区', '710500', '六甲', '3', '6', '734', '中国,台湾,台南市,六甲区', '120.348', '23.2319', 'Liujia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710518', '官田区', '710500', '官田', '3', '6', '720', '中国,台湾,台南市,官田区', '120.314', '23.1947', 'Guantian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710519', '大内区', '710500', '大内', '3', '6', '742', '中国,台湾,台南市,大内区', '120.349', '23.1195', 'Dana', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710520', '佳里区', '710500', '佳里', '3', '6', '722', '中国,台湾,台南市,佳里区', '120.177', '23.1651', 'Jiali', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710521', '学甲区', '710500', '学甲', '3', '6', '726', '中国,台湾,台南市,学甲区', '120.18', '23.2323', 'Xuejia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710522', '西港区', '710500', '西港', '3', '6', '723', '中国,台湾,台南市,西港区', '120.204', '23.1231', 'Xigang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710523', '七股区', '710500', '七股', '3', '6', '724', '中国,台湾,台南市,七股区', '120.14', '23.1405', 'Qigu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710524', '将军区', '710500', '将军', '3', '6', '725', '中国,台湾,台南市,将军区', '120.157', '23.1995', 'Jiangjun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710525', '北门区', '710500', '北门', '3', '6', '727', '中国,台湾,台南市,北门区', '120.126', '23.2671', 'Beimen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710526', '新化区', '710500', '新化', '3', '6', '712', '中国,台湾,台南市,新化区', '120.311', '23.0385', 'Xinhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710527', '善化区', '710500', '善化', '3', '6', '741', '中国,台湾,台南市,善化区', '120.297', '23.1323', 'Shanhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710528', '新市区', '710500', '新市', '3', '6', '744', '中国,台湾,台南市,新市区', '120.295', '23.079', 'Xinshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710529', '安定区', '710500', '安定', '3', '6', '745', '中国,台湾,台南市,安定区', '120.237', '23.1215', 'Anding', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710530', '山上区', '710500', '山上', '3', '6', '743', '中国,台湾,台南市,山上区', '120.353', '23.1032', 'Shanshang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710531', '玉井区', '710500', '玉井', '3', '6', '714', '中国,台湾,台南市,玉井区', '120.46', '23.1239', 'Yujing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710532', '楠西区', '710500', '楠西', '3', '6', '715', '中国,台湾,台南市,楠西区', '120.485', '23.1735', 'Nanxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710533', '南化区', '710500', '南化', '3', '6', '716', '中国,台湾,台南市,南化区', '120.477', '23.0426', 'Nanhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710534', '左镇区', '710500', '左镇', '3', '6', '713', '中国,台湾,台南市,左镇区', '120.407', '23.058', 'Zuozhen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710535', '仁德区', '710500', '仁德', '3', '6', '717', '中国,台湾,台南市,仁德区', '120.252', '22.9722', 'Rende', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710536', '归仁区', '710500', '归仁', '3', '6', '711', '中国,台湾,台南市,归仁区', '120.294', '22.9671', 'Guiren', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710537', '关庙区', '710500', '关庙', '3', '6', '718', '中国,台湾,台南市,关庙区', '120.328', '22.9629', 'Guanmiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710538', '龙崎区', '710500', '龙崎', '3', '6', '719', '中国,台湾,台南市,龙崎区', '120.361', '22.9657', 'Longqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710539', '永康区', '710500', '永康', '3', '6', '710', '中国,台湾,台南市,永康区', '120.257', '23.0261', 'Yongkang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710600', '新竹市', '710000', '新竹', '2', '3', '3', '中国,台湾,新竹市', '120.969', '24.8067', 'Hsinchu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710601', '东区', '710600', '东区', '3', '3', '300', '中国,台湾,新竹市,东区', '120.97', '24.8013', 'Dongqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710602', '北区', '710600', '北区', '3', '3', '0', '中国,台湾,新竹市,北区', '120.682', '24.166', 'Beiqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710603', '香山区', '710600', '香山', '3', '3', '0', '中国,台湾,新竹市,香山区', '120.957', '24.7689', 'Xiangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710700', '嘉义市', '710000', '嘉义', '2', '5', '6', '中国,台湾,嘉义市', '120.453', '23.4816', 'Chiayi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710701', '东区', '710700', '东区', '3', '5', '600', '中国,台湾,嘉义市,东区', '120.458', '23.4862', 'Dongqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710702', '西区', '710700', '西区', '3', '5', '600', '中国,台湾,嘉义市,西区', '120.437', '23.473', 'Xiqu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710800', '新北市', '710000', '新北', '2', '2', '2', '中国,台湾,新北市', '121.466', '25.0124', 'New Taipei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710801', '板桥区', '710800', '板桥', '3', '2', '220', '中国,台湾,新北市,板桥区', '121.459', '25.0096', 'Banqiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710802', '三重区', '710800', '三重', '3', '2', '241', '中国,台湾,新北市,三重区', '121.488', '25.0615', 'Sanzhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710803', '中和区', '710800', '中和', '3', '2', '235', '中国,台湾,新北市,中和区', '121.499', '24.9994', 'Zhonghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710804', '永和区', '710800', '永和', '3', '2', '234', '中国,台湾,新北市,永和区', '121.514', '25.0078', 'Yonghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710805', '新庄区', '710800', '新庄', '3', '2', '242', '中国,台湾,新北市,新庄区', '121.45', '25.0359', 'Xinzhuang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710806', '新店区', '710800', '新店', '3', '2', '231', '中国,台湾,新北市,新店区', '121.542', '24.9676', 'Xindian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710807', '树林区', '710800', '树林', '3', '2', '238', '中国,台湾,新北市,树林区', '121.421', '24.9907', 'Shulin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710808', '莺歌区', '710800', '莺歌', '3', '2', '239', '中国,台湾,新北市,莺歌区', '121.355', '24.9554', 'Yingge', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710809', '三峡区', '710800', '三峡', '3', '2', '237', '中国,台湾,新北市,三峡区', '121.369', '24.9343', 'Sanxia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710810', '淡水区', '710800', '淡水', '3', '2', '251', '中国,台湾,新北市,淡水区', '121.441', '25.1695', 'Danshui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710811', '汐止区', '710800', '汐止', '3', '2', '221', '中国,台湾,新北市,汐止区', '121.629', '25.063', 'Xizhi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710812', '瑞芳区', '710800', '瑞芳', '3', '2', '224', '中国,台湾,新北市,瑞芳区', '121.81', '25.1089', 'Ruifang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710813', '土城区', '710800', '土城', '3', '2', '236', '中国,台湾,新北市,土城区', '121.443', '24.9722', 'Tucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710814', '芦洲区', '710800', '芦洲', '3', '2', '247', '中国,台湾,新北市,芦洲区', '121.474', '25.0849', 'Luzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710815', '五股区', '710800', '五股', '3', '2', '248', '中国,台湾,新北市,五股区', '121.438', '25.0827', 'Wugu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710816', '泰山区', '710800', '泰山', '3', '2', '243', '中国,台湾,新北市,泰山区', '121.431', '25.0589', 'Taishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710817', '林口区', '710800', '林口', '3', '2', '244', '中国,台湾,新北市,林口区', '121.392', '25.0775', 'Linkou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710818', '深坑区', '710800', '深坑', '3', '2', '222', '中国,台湾,新北市,深坑区', '121.616', '25.0023', 'Shenkeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710819', '石碇区', '710800', '石碇', '3', '2', '223', '中国,台湾,新北市,石碇区', '121.659', '24.9917', 'Shiding', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710820', '坪林区', '710800', '坪林', '3', '2', '232', '中国,台湾,新北市,坪林区', '121.711', '24.9374', 'Pinglin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710821', '三芝区', '710800', '三芝', '3', '2', '252', '中国,台湾,新北市,三芝区', '121.501', '25.258', 'Sanzhi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710822', '石门区', '710800', '石门', '3', '2', '253', '中国,台湾,新北市,石门区', '121.568', '25.2904', 'Shimen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710823', '八里区', '710800', '八里', '3', '2', '249', '中国,台湾,新北市,八里区', '121.398', '25.1467', 'Bali', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710824', '平溪区', '710800', '平溪', '3', '2', '226', '中国,台湾,新北市,平溪区', '121.738', '25.0257', 'Pingxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710825', '双溪区', '710800', '双溪', '3', '2', '227', '中国,台湾,新北市,双溪区', '121.866', '25.0334', 'Shuangxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710826', '贡寮区', '710800', '贡寮', '3', '2', '228', '中国,台湾,新北市,贡寮区', '121.908', '25.0224', 'Gongliao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710827', '金山区', '710800', '金山', '3', '2', '208', '中国,台湾,新北市,金山区', '121.636', '25.2219', 'Jinshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710828', '万里区', '710800', '万里', '3', '2', '207', '中国,台湾,新北市,万里区', '121.689', '25.1812', 'Wanli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('710829', '乌来区', '710800', '乌来', '3', '2', '233', '中国,台湾,新北市,乌来区', '121.551', '24.8653', 'Wulai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712200', '宜兰县', '710000', '宜兰', '2', '3', '2', '中国,台湾,宜兰县', '121.5', '24.6', 'Yilan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712201', '宜兰市', '712200', '宜兰', '3', '3', '260', '中国,台湾,宜兰县,宜兰市', '121.753', '24.7517', 'Yilan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712221', '罗东镇', '712200', '罗东', '3', '3', '265', '中国,台湾,宜兰县,罗东镇', '121.767', '24.677', 'Luodong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712222', '苏澳镇', '712200', '苏澳', '3', '3', '270', '中国,台湾,宜兰县,苏澳镇', '121.843', '24.5946', 'Suao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712223', '头城镇', '712200', '头城', '3', '3', '261', '中国,台湾,宜兰县,头城镇', '121.823', '24.8592', 'Toucheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712224', '礁溪乡', '712200', '礁溪', '3', '3', '262', '中国,台湾,宜兰县,礁溪乡', '121.767', '24.8223', 'Jiaoxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712225', '壮围乡', '712200', '壮围', '3', '3', '263', '中国,台湾,宜兰县,壮围乡', '121.782', '24.7449', 'Zhuangwei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712226', '员山乡', '712200', '员山', '3', '3', '264', '中国,台湾,宜兰县,员山乡', '121.722', '24.7418', 'Yuanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712227', '冬山乡', '712200', '冬山', '3', '3', '269', '中国,台湾,宜兰县,冬山乡', '121.792', '24.6345', 'Dongshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712228', '五结乡', '712200', '五结', '3', '3', '268', '中国,台湾,宜兰县,五结乡', '121.798', '24.6846', 'Wujie', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712229', '三星乡', '712200', '三星', '3', '3', '266', '中国,台湾,宜兰县,三星乡', '121.003', '23.7753', 'Sanxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712230', '大同乡', '712200', '大同', '3', '3', '267', '中国,台湾,宜兰县,大同乡', '121.606', '24.676', 'Datong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712231', '南澳乡', '712200', '南澳', '3', '3', '272', '中国,台湾,宜兰县,南澳乡', '121.8', '24.4654', 'Nanao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712300', '桃园县', '710000', '桃园', '2', '3', '3', '中国,台湾,桃园县', '121.083', '25', 'Taoyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712301', '桃园市', '712300', '桃园', '3', '3', '330', '中国,台湾,桃园县,桃园市', '121.301', '24.9938', 'Taoyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712302', '中坜市', '712300', '中坜', '3', '3', '320', '中国,台湾,桃园县,中坜市', '121.225', '24.9654', 'Zhongli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712303', '平镇市', '712300', '平镇', '3', '3', '324', '中国,台湾,桃园县,平镇市', '121.218', '24.9458', 'Pingzhen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712304', '八德市', '712300', '八德', '3', '3', '334', '中国,台湾,桃园县,八德市', '121.285', '24.9287', 'Bade', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712305', '杨梅市', '712300', '杨梅', '3', '3', '326', '中国,台湾,桃园县,杨梅市', '121.146', '24.9076', 'Yangmei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712306', '芦竹市', '712300', '芦竹', '3', '3', '338', '中国,台湾,桃园县,芦竹市', '121.292', '25.0454', 'Luzhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712321', '大溪镇', '712300', '大溪', '3', '3', '335', '中国,台湾,桃园县,大溪镇', '121.287', '24.8806', 'Daxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712324', '大园乡', '712300', '大园', '3', '3', '337', '中国,台湾,桃园县,大园乡', '121.196', '25.0645', 'Dayuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712325', '龟山乡', '712300', '龟山', '3', '3', '333', '中国,台湾,桃园县,龟山乡', '121.338', '24.9925', 'Guishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712327', '龙潭乡', '712300', '龙潭', '3', '3', '325', '中国,台湾,桃园县,龙潭乡', '121.216', '24.8639', 'Longtan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712329', '新屋乡', '712300', '新屋', '3', '3', '327', '中国,台湾,桃园县,新屋乡', '121.106', '24.9722', 'Xinwu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712330', '观音乡', '712300', '观音', '3', '3', '328', '中国,台湾,桃园县,观音乡', '121.078', '25.0333', 'Guanyin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712331', '复兴乡', '712300', '复兴', '3', '3', '336', '中国,台湾,桃园县,复兴乡', '121.353', '24.8209', 'Fuxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712400', '新竹县', '710000', '新竹', '2', '3', '3', '中国,台湾,新竹县', '121.16', '24.6', 'Hsinchu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712401', '竹北市', '712400', '竹北', '3', '3', '302', '中国,台湾,新竹县,竹北市', '121.004', '24.8397', 'Zhubei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712421', '竹东镇', '712400', '竹东', '3', '3', '310', '中国,台湾,新竹县,竹东镇', '121.086', '24.7336', 'Zhudong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712422', '新埔镇', '712400', '新埔', '3', '3', '305', '中国,台湾,新竹县,新埔镇', '121.073', '24.8248', 'Xinpu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712423', '关西镇', '712400', '关西', '3', '3', '306', '中国,台湾,新竹县,关西镇', '121.177', '24.7888', 'Guanxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712424', '湖口乡', '712400', '湖口', '3', '3', '303', '中国,台湾,新竹县,湖口乡', '121.044', '24.9039', 'Hukou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712425', '新丰乡', '712400', '新丰', '3', '3', '304', '中国,台湾,新竹县,新丰乡', '120.983', '24.8996', 'Xinfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712426', '芎林乡', '712400', '芎林', '3', '3', '307', '中国,台湾,新竹县,芎林乡', '121.077', '24.7744', 'Xionglin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712427', '横山乡', '712400', '横山', '3', '3', '312', '中国,台湾,新竹县,横山乡', '121.116', '24.7208', 'Hengshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712428', '北埔乡', '712400', '北埔', '3', '3', '314', '中国,台湾,新竹县,北埔乡', '121.053', '24.6971', 'Beipu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712429', '宝山乡', '712400', '宝山', '3', '3', '308', '中国,台湾,新竹县,宝山乡', '120.986', '24.761', 'Baoshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712430', '峨眉乡', '712400', '峨眉', '3', '3', '315', '中国,台湾,新竹县,峨眉乡', '121.015', '24.6861', 'Emei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712431', '尖石乡', '712400', '尖石', '3', '3', '313', '中国,台湾,新竹县,尖石乡', '121.198', '24.7044', 'Jianshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712432', '五峰乡', '712400', '五峰', '3', '3', '311', '中国,台湾,新竹县,五峰乡', '121.003', '23.7753', 'Wufeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712500', '苗栗县', '710000', '苗栗', '2', '37', '3', '中国,台湾,苗栗县', '120.75', '24.5', 'Miaoli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712501', '苗栗市', '712500', '苗栗', '3', '37', '360', '中国,台湾,苗栗县,苗栗市', '120.819', '24.5615', 'Miaoli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712521', '苑里镇', '712500', '苑里', '3', '37', '358', '中国,台湾,苗栗县,苑里镇', '120.649', '24.4417', 'Yuanli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712522', '通霄镇', '712500', '通霄', '3', '37', '357', '中国,台湾,苗栗县,通霄镇', '120.677', '24.4891', 'Tongxiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712523', '竹南镇', '712500', '竹南', '3', '37', '350', '中国,台湾,苗栗县,竹南镇', '120.873', '24.6855', 'Zhunan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712524', '头份镇', '712500', '头份', '3', '37', '351', '中国,台湾,苗栗县,头份镇', '120.895', '24.688', 'Toufen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712525', '后龙镇', '712500', '后龙', '3', '37', '356', '中国,台湾,苗栗县,后龙镇', '120.786', '24.6126', 'Houlong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712526', '卓兰镇', '712500', '卓兰', '3', '37', '369', '中国,台湾,苗栗县,卓兰镇', '120.823', '24.3095', 'Zhuolan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712527', '大湖乡', '712500', '大湖', '3', '37', '364', '中国,台湾,苗栗县,大湖乡', '120.864', '24.4225', 'Dahu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712528', '公馆乡', '712500', '公馆', '3', '37', '363', '中国,台湾,苗栗县,公馆乡', '120.823', '24.4991', 'Gongguan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712529', '铜锣乡', '712500', '铜锣', '3', '37', '366', '中国,台湾,苗栗县,铜锣乡', '121.003', '23.7753', 'Tongluo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712530', '南庄乡', '712500', '南庄', '3', '37', '353', '中国,台湾,苗栗县,南庄乡', '120.995', '24.5968', 'Nanzhuang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712531', '头屋乡', '712500', '头屋', '3', '37', '362', '中国,台湾,苗栗县,头屋乡', '120.847', '24.5742', 'Touwu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712532', '三义乡', '712500', '三义', '3', '37', '367', '中国,台湾,苗栗县,三义乡', '120.742', '24.3503', 'Sanyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712533', '西湖乡', '712500', '西湖', '3', '37', '368', '中国,台湾,苗栗县,西湖乡', '121.003', '23.7753', 'Xihu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712534', '造桥乡', '712500', '造桥', '3', '37', '361', '中国,台湾,苗栗县,造桥乡', '120.862', '24.6375', 'Zaoqiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712535', '三湾乡', '712500', '三湾', '3', '37', '352', '中国,台湾,苗栗县,三湾乡', '120.951', '24.6511', 'Sanwan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712536', '狮潭乡', '712500', '狮潭', '3', '37', '354', '中国,台湾,苗栗县,狮潭乡', '120.918', '24.54', 'Shitan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712537', '泰安乡', '712500', '泰安', '3', '37', '365', '中国,台湾,苗栗县,泰安乡', '120.904', '24.4426', 'Taian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712700', '彰化县', '710000', '彰化', '2', '4', '5', '中国,台湾,彰化县', '120.416', '24', 'Changhua', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712701', '彰化市', '712700', '彰化市', '3', '4', '500', '中国,台湾,彰化县,彰化市', '120.542', '24.0809', 'Zhanghuashi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712721', '鹿港镇', '712700', '鹿港', '3', '4', '505', '中国,台湾,彰化县,鹿港镇', '120.435', '24.0569', 'Lugang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712722', '和美镇', '712700', '和美', '3', '4', '508', '中国,台湾,彰化县,和美镇', '120.5', '24.1109', 'Hemei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712723', '线西乡', '712700', '线西', '3', '4', '507', '中国,台湾,彰化县,线西乡', '120.466', '24.1287', 'Xianxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712724', '伸港乡', '712700', '伸港', '3', '4', '509', '中国,台湾,彰化县,伸港乡', '120.484', '24.1461', 'Shengang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712725', '福兴乡', '712700', '福兴', '3', '4', '506', '中国,台湾,彰化县,福兴乡', '120.444', '24.0479', 'Fuxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712726', '秀水乡', '712700', '秀水', '3', '4', '504', '中国,台湾,彰化县,秀水乡', '120.503', '24.0353', 'Xiushui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712727', '花坛乡', '712700', '花坛', '3', '4', '503', '中国,台湾,彰化县,花坛乡', '120.538', '24.0294', 'Huatan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712728', '芬园乡', '712700', '芬园', '3', '4', '502', '中国,台湾,彰化县,芬园乡', '120.629', '24.0137', 'Fenyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712729', '员林镇', '712700', '员林', '3', '4', '510', '中国,台湾,彰化县,员林镇', '120.575', '23.959', 'Yuanlin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712730', '溪湖镇', '712700', '溪湖', '3', '4', '514', '中国,台湾,彰化县,溪湖镇', '120.479', '23.9623', 'Xihu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712731', '田中镇', '712700', '田中', '3', '4', '520', '中国,台湾,彰化县,田中镇', '120.581', '23.8617', 'Tianzhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712732', '大村乡', '712700', '大村', '3', '4', '515', '中国,台湾,彰化县,大村乡', '120.541', '23.9937', 'Dacun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712733', '埔盐乡', '712700', '埔盐', '3', '4', '516', '中国,台湾,彰化县,埔盐乡', '120.464', '24.0003', 'Puyan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712734', '埔心乡', '712700', '埔心', '3', '4', '513', '中国,台湾,彰化县,埔心乡', '120.544', '23.953', 'Puxin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712735', '永靖乡', '712700', '永靖', '3', '4', '512', '中国,台湾,彰化县,永靖乡', '120.548', '23.9247', 'Yongjing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712736', '社头乡', '712700', '社头', '3', '4', '511', '中国,台湾,彰化县,社头乡', '120.583', '23.8967', 'Shetou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712737', '二水乡', '712700', '二水', '3', '4', '530', '中国,台湾,彰化县,二水乡', '120.619', '23.807', 'Ershui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712738', '北斗镇', '712700', '北斗', '3', '4', '521', '中国,台湾,彰化县,北斗镇', '120.52', '23.8709', 'Beidou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712739', '二林镇', '712700', '二林', '3', '4', '526', '中国,台湾,彰化县,二林镇', '120.374', '23.8998', 'Erlin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712740', '田尾乡', '712700', '田尾', '3', '4', '522', '中国,台湾,彰化县,田尾乡', '120.525', '23.8907', 'Tianwei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712741', '埤头乡', '712700', '埤头', '3', '4', '523', '中国,台湾,彰化县,埤头乡', '120.463', '23.8913', 'Pitou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712742', '芳苑乡', '712700', '芳苑', '3', '4', '528', '中国,台湾,彰化县,芳苑乡', '120.32', '23.9242', 'Fangyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712743', '大城乡', '712700', '大城', '3', '4', '527', '中国,台湾,彰化县,大城乡', '120.321', '23.8524', 'Dacheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712744', '竹塘乡', '712700', '竹塘', '3', '4', '525', '中国,台湾,彰化县,竹塘乡', '120.427', '23.8601', 'Zhutang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712745', '溪州乡', '712700', '溪州', '3', '4', '524', '中国,台湾,彰化县,溪州乡', '120.499', '23.8512', 'Xizhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712800', '南投县', '710000', '南投', '2', '49', '5', '中国,台湾,南投县', '120.83', '23.83', 'Nantou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712801', '南投市', '712800', '南投市', '3', '49', '540', '中国,台湾,南投县,南投市', '120.684', '23.91', 'Nantoushi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712821', '埔里镇', '712800', '埔里', '3', '49', '545', '中国,台湾,南投县,埔里镇', '120.965', '23.9648', 'Puli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712822', '草屯镇', '712800', '草屯', '3', '49', '542', '中国,台湾,南投县,草屯镇', '120.68', '23.9739', 'Caotun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712823', '竹山镇', '712800', '竹山', '3', '49', '557', '中国,台湾,南投县,竹山镇', '120.672', '23.7577', 'Zhushan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712824', '集集镇', '712800', '集集', '3', '49', '552', '中国,台湾,南投县,集集镇', '120.784', '23.829', 'Jiji', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712825', '名间乡', '712800', '名间', '3', '49', '551', '中国,台湾,南投县,名间乡', '120.703', '23.8384', 'Mingjian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712826', '鹿谷乡', '712800', '鹿谷', '3', '49', '558', '中国,台湾,南投县,鹿谷乡', '120.753', '23.7445', 'Lugu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712827', '中寮乡', '712800', '中寮', '3', '49', '541', '中国,台湾,南投县,中寮乡', '120.767', '23.8789', 'Zhongliao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712828', '鱼池乡', '712800', '鱼池', '3', '49', '555', '中国,台湾,南投县,鱼池乡', '120.936', '23.8964', 'Yuchi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712829', '国姓乡', '712800', '国姓', '3', '49', '544', '中国,台湾,南投县,国姓乡', '120.859', '24.0423', 'Guoxing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712830', '水里乡', '712800', '水里', '3', '49', '553', '中国,台湾,南投县,水里乡', '120.856', '23.8121', 'Shuili', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712831', '信义乡', '712800', '信义', '3', '49', '556', '中国,台湾,南投县,信义乡', '120.855', '23.6999', 'Xinyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712832', '仁爱乡', '712800', '仁爱', '3', '49', '546', '中国,台湾,南投县,仁爱乡', '121.134', '24.0244', 'Renai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712900', '云林县', '710000', '云林', '2', '5', '6', '中国,台湾,云林县', '120.25', '23.75', 'Yunlin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712901', '斗六市', '712900', '斗六', '3', '5', '640', '中国,台湾,云林县,斗六市', '120.527', '23.6977', 'Douliu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712921', '斗南镇', '712900', '斗南', '3', '5', '630', '中国,台湾,云林县,斗南镇', '120.479', '23.6797', 'Dounan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712922', '虎尾镇', '712900', '虎尾', '3', '5', '632', '中国,台湾,云林县,虎尾镇', '120.445', '23.7082', 'Huwei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712923', '西螺镇', '712900', '西螺', '3', '5', '648', '中国,台湾,云林县,西螺镇', '120.466', '23.798', 'Xiluo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712924', '土库镇', '712900', '土库', '3', '5', '633', '中国,台湾,云林县,土库镇', '120.393', '23.6778', 'Tuku', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712925', '北港镇', '712900', '北港', '3', '5', '651', '中国,台湾,云林县,北港镇', '120.302', '23.5755', 'Beigang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712926', '古坑乡', '712900', '古坑', '3', '5', '646', '中国,台湾,云林县,古坑乡', '120.562', '23.6426', 'Gukeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712927', '大埤乡', '712900', '大埤', '3', '5', '631', '中国,台湾,云林县,大埤乡', '120.431', '23.6459', 'Dapi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712928', '莿桐乡', '712900', '莿桐', '3', '5', '647', '中国,台湾,云林县,莿桐乡', '120.502', '23.7608', 'Citong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712929', '林内乡', '712900', '林内', '3', '5', '643', '中国,台湾,云林县,林内乡', '120.611', '23.7587', 'Linna', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712930', '二仑乡', '712900', '二仑', '3', '5', '649', '中国,台湾,云林县,二仑乡', '120.415', '23.7713', 'Erlun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712931', '仑背乡', '712900', '仑背', '3', '5', '637', '中国,台湾,云林县,仑背乡', '120.354', '23.7588', 'Lunbei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712932', '麦寮乡', '712900', '麦寮', '3', '5', '638', '中国,台湾,云林县,麦寮乡', '120.252', '23.7538', 'Mailiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712933', '东势乡', '712900', '东势', '3', '5', '635', '中国,台湾,云林县,东势乡', '120.253', '23.6747', 'Dongshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712934', '褒忠乡', '712900', '褒忠', '3', '5', '634', '中国,台湾,云林县,褒忠乡', '120.31', '23.6942', 'Baozhong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712935', '台西乡', '712900', '台西', '3', '5', '636', '中国,台湾,云林县,台西乡', '120.196', '23.7028', 'Taixi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712936', '元长乡', '712900', '元长', '3', '5', '655', '中国,台湾,云林县,元长乡', '120.315', '23.6495', 'Yuanchang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712937', '四湖乡', '712900', '四湖', '3', '5', '654', '中国,台湾,云林县,四湖乡', '120.226', '23.6377', 'Sihu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712938', '口湖乡', '712900', '口湖', '3', '5', '653', '中国,台湾,云林县,口湖乡', '120.185', '23.5824', 'Kouhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('712939', '水林乡', '712900', '水林', '3', '5', '652', '中国,台湾,云林县,水林乡', '120.246', '23.5726', 'Shuilin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713000', '嘉义县', '710000', '嘉义', '2', '5', '6', '中国,台湾,嘉义县', '120.3', '23.5', 'Chiayi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713001', '太保市', '713000', '太保', '3', '5', '612', '中国,台湾,嘉义县,太保市', '120.333', '23.4596', 'Taibao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713002', '朴子市', '713000', '朴子', '3', '5', '613', '中国,台湾,嘉义县,朴子市', '120.247', '23.465', 'Puzi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713023', '布袋镇', '713000', '布袋', '3', '5', '625', '中国,台湾,嘉义县,布袋镇', '120.167', '23.378', 'Budai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713024', '大林镇', '713000', '大林', '3', '5', '622', '中国,台湾,嘉义县,大林镇', '120.471', '23.6038', 'Dalin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713025', '民雄乡', '713000', '民雄', '3', '5', '621', '中国,台湾,嘉义县,民雄乡', '120.429', '23.5515', 'Minxiong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713026', '溪口乡', '713000', '溪口', '3', '5', '623', '中国,台湾,嘉义县,溪口乡', '120.394', '23.6022', 'Xikou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713027', '新港乡', '713000', '新港', '3', '5', '616', '中国,台湾,嘉义县,新港乡', '120.348', '23.5518', 'Xingang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713028', '六脚乡', '713000', '六脚', '3', '5', '615', '中国,台湾,嘉义县,六脚乡', '120.291', '23.4939', 'Liujiao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713029', '东石乡', '713000', '东石', '3', '5', '614', '中国,台湾,嘉义县,东石乡', '120.154', '23.4592', 'Dongshi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713030', '义竹乡', '713000', '义竹', '3', '5', '624', '中国,台湾,嘉义县,义竹乡', '120.243', '23.3363', 'Yizhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713031', '鹿草乡', '713000', '鹿草', '3', '5', '611', '中国,台湾,嘉义县,鹿草乡', '120.308', '23.4108', 'Lucao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713032', '水上乡', '713000', '水上', '3', '5', '608', '中国,台湾,嘉义县,水上乡', '120.398', '23.4281', 'Shuishang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713033', '中埔乡', '713000', '中埔', '3', '5', '606', '中国,台湾,嘉义县,中埔乡', '120.523', '23.4251', 'Zhongpu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713034', '竹崎乡', '713000', '竹崎', '3', '5', '604', '中国,台湾,嘉义县,竹崎乡', '120.551', '23.5232', 'Zhuqi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713035', '梅山乡', '713000', '梅山', '3', '5', '603', '中国,台湾,嘉义县,梅山乡', '120.557', '23.5849', 'Meishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713036', '番路乡', '713000', '番路', '3', '5', '602', '中国,台湾,嘉义县,番路乡', '120.555', '23.4652', 'Fanlu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713037', '大埔乡', '713000', '大埔', '3', '5', '607', '中国,台湾,嘉义县,大埔乡', '120.594', '23.2967', 'Dapu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713038', '阿里山乡', '713000', '阿里山', '3', '5', '605', '中国,台湾,嘉义县,阿里山乡', '120.733', '23.468', 'Alishan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713300', '屏东县', '710000', '屏东', '2', '8', '9', '中国,台湾,屏东县', '120.488', '22.6828', 'Pingtung', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713301', '屏东市', '713300', '屏东', '3', '8', '900', '中国,台湾,屏东县,屏东市', '120.488', '22.6697', 'Pingdong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713321', '潮州镇', '713300', '潮州', '3', '8', '920', '中国,台湾,屏东县,潮州镇', '120.543', '22.5505', 'Chaozhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713322', '东港镇', '713300', '东港', '3', '8', '928', '中国,台湾,屏东县,东港镇', '120.454', '22.4666', 'Donggang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713323', '恒春镇', '713300', '恒春', '3', '8', '946', '中国,台湾,屏东县,恒春镇', '120.745', '22.0024', 'Hengchun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713324', '万丹乡', '713300', '万丹', '3', '8', '913', '中国,台湾,屏东县,万丹乡', '120.485', '22.5898', 'Wandan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713325', '长治乡', '713300', '长治', '3', '8', '908', '中国,台湾,屏东县,长治乡', '120.528', '22.6771', 'Changzhi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713326', '麟洛乡', '713300', '麟洛', '3', '8', '909', '中国,台湾,屏东县,麟洛乡', '120.527', '22.6506', 'Linluo', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713327', '九如乡', '713300', '九如', '3', '8', '904', '中国,台湾,屏东县,九如乡', '120.49', '22.7398', 'Jiuru', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713328', '里港乡', '713300', '里港', '3', '8', '905', '中国,台湾,屏东县,里港乡', '120.494', '22.7792', 'Ligang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713329', '盐埔乡', '713300', '盐埔', '3', '8', '907', '中国,台湾,屏东县,盐埔乡', '120.573', '22.7548', 'Yanpu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713330', '高树乡', '713300', '高树', '3', '8', '906', '中国,台湾,屏东县,高树乡', '120.6', '22.8268', 'Gaoshu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713331', '万峦乡', '713300', '万峦', '3', '8', '923', '中国,台湾,屏东县,万峦乡', '120.566', '22.572', 'Wanluan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713332', '内埔乡', '713300', '内埔', '3', '8', '912', '中国,台湾,屏东县,内埔乡', '120.567', '22.612', 'Napu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713333', '竹田乡', '713300', '竹田', '3', '8', '911', '中国,台湾,屏东县,竹田乡', '120.544', '22.5847', 'Zhutian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713334', '新埤乡', '713300', '新埤', '3', '8', '925', '中国,台湾,屏东县,新埤乡', '120.55', '22.47', 'Xinpi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713335', '枋寮乡', '713300', '枋寮', '3', '8', '940', '中国,台湾,屏东县,枋寮乡', '120.593', '22.3656', 'Fangliao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713336', '新园乡', '713300', '新园', '3', '8', '932', '中国,台湾,屏东县,新园乡', '120.462', '22.544', 'Xinyuan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713337', '崁顶乡', '713300', '崁顶', '3', '8', '924', '中国,台湾,屏东县,崁顶乡', '120.515', '22.5148', 'Kanding', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713338', '林边乡', '713300', '林边', '3', '8', '927', '中国,台湾,屏东县,林边乡', '120.515', '22.434', 'Linbian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713339', '南州乡', '713300', '南州', '3', '8', '926', '中国,台湾,屏东县,南州乡', '120.51', '22.4902', 'Nanzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713340', '佳冬乡', '713300', '佳冬', '3', '8', '931', '中国,台湾,屏东县,佳冬乡', '120.552', '22.4177', 'Jiadong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713341', '琉球乡', '713300', '琉球', '3', '8', '929', '中国,台湾,屏东县,琉球乡', '120.369', '22.3424', 'Liuqiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713342', '车城乡', '713300', '车城', '3', '8', '944', '中国,台湾,屏东县,车城乡', '120.711', '22.0721', 'Checheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713343', '满州乡', '713300', '满州', '3', '8', '947', '中国,台湾,屏东县,满州乡', '120.839', '22.0209', 'Manzhou', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713344', '枋山乡', '713300', '枋山', '3', '8', '941', '中国,台湾,屏东县,枋山乡', '120.656', '22.2603', 'Fangshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713345', '三地门乡', '713300', '三地门', '3', '8', '901', '中国,台湾,屏东县,三地门乡', '120.654', '22.7139', 'Sandimen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713346', '雾台乡', '713300', '雾台', '3', '8', '902', '中国,台湾,屏东县,雾台乡', '120.732', '22.7449', 'Wutai', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713347', '玛家乡', '713300', '玛家', '3', '8', '903', '中国,台湾,屏东县,玛家乡', '120.644', '22.7067', 'Majia', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713348', '泰武乡', '713300', '泰武', '3', '8', '921', '中国,台湾,屏东县,泰武乡', '120.633', '22.5918', 'Taiwu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713349', '来义乡', '713300', '来义', '3', '8', '922', '中国,台湾,屏东县,来义乡', '120.634', '22.5259', 'Laiyi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713350', '春日乡', '713300', '春日', '3', '8', '942', '中国,台湾,屏东县,春日乡', '120.629', '22.3707', 'Chunri', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713351', '狮子乡', '713300', '狮子', '3', '8', '943', '中国,台湾,屏东县,狮子乡', '120.705', '22.2019', 'Shizi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713352', '牡丹乡', '713300', '牡丹', '3', '8', '945', '中国,台湾,屏东县,牡丹乡', '120.77', '22.1257', 'Mudan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713400', '台东县', '710000', '台东', '2', '89', '9', '中国,台湾,台东县', '120.916', '23', 'Taitung', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713401', '台东市', '713400', '台东', '3', '89', '950', '中国,台湾,台东县,台东市', '121.146', '22.756', 'Taidong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713421', '成功镇', '713400', '成功', '3', '89', '961', '中国,台湾,台东县,成功镇', '121.38', '23.1002', 'Chenggong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713422', '关山镇', '713400', '关山', '3', '89', '956', '中国,台湾,台东县,关山镇', '121.163', '23.0474', 'Guanshan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713423', '卑南乡', '713400', '卑南', '3', '89', '954', '中国,台湾,台东县,卑南乡', '121.084', '22.786', 'Beinan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713424', '鹿野乡', '713400', '鹿野', '3', '89', '955', '中国,台湾,台东县,鹿野乡', '121.136', '22.914', 'Luye', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713425', '池上乡', '713400', '池上', '3', '89', '958', '中国,台湾,台东县,池上乡', '121.215', '23.1224', 'Chishang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713426', '东河乡', '713400', '东河', '3', '89', '959', '中国,台湾,台东县,东河乡', '121.3', '22.9699', 'Donghe', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713427', '长滨乡', '713400', '长滨', '3', '89', '962', '中国,台湾,台东县,长滨乡', '121.452', '23.315', 'Changbin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713428', '太麻里乡', '713400', '太麻里', '3', '89', '963', '中国,台湾,台东县,太麻里乡', '121.007', '22.6154', 'Taimali', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713429', '大武乡', '713400', '大武', '3', '89', '965', '中国,台湾,台东县,大武乡', '120.89', '22.3399', 'Dawu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713430', '绿岛乡', '713400', '绿岛', '3', '89', '951', '中国,台湾,台东县,绿岛乡', '121.493', '22.6617', 'Lvdao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713431', '海端乡', '713400', '海端', '3', '89', '957', '中国,台湾,台东县,海端乡', '121.172', '23.1011', 'Haiduan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713432', '延平乡', '713400', '延平', '3', '89', '953', '中国,台湾,台东县,延平乡', '121.084', '22.9024', 'Yanping', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713433', '金峰乡', '713400', '金峰', '3', '89', '964', '中国,台湾,台东县,金峰乡', '120.971', '22.5955', 'Jinfeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713434', '达仁乡', '713400', '达仁', '3', '89', '966', '中国,台湾,台东县,达仁乡', '120.884', '22.2949', 'Daren', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713435', '兰屿乡', '713400', '兰屿', '3', '89', '952', '中国,台湾,台东县,兰屿乡', '121.532', '22.0567', 'Lanyu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713500', '花莲县', '710000', '花莲', '2', '3', '9', '中国,台湾,花莲县', '121.3', '23.83', 'Hualien', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713501', '花莲市', '713500', '花莲', '3', '3', '970', '中国,台湾,花莲县,花莲市', '121.607', '23.9821', 'Hualian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713521', '凤林镇', '713500', '凤林', '3', '3', '975', '中国,台湾,花莲县,凤林镇', '121.452', '23.7446', 'Fenglin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713522', '玉里镇', '713500', '玉里', '3', '3', '981', '中国,台湾,花莲县,玉里镇', '121.316', '23.3365', 'Yuli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713523', '新城乡', '713500', '新城', '3', '3', '971', '中国,台湾,花莲县,新城乡', '121.641', '24.1281', 'Xincheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713524', '吉安乡', '713500', '吉安', '3', '3', '973', '中国,台湾,花莲县,吉安乡', '121.568', '23.9616', 'Jian', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713525', '寿丰乡', '713500', '寿丰', '3', '3', '974', '中国,台湾,花莲县,寿丰乡', '121.509', '23.8707', 'Shoufeng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713526', '光复乡', '713500', '光复', '3', '3', '976', '中国,台湾,花莲县,光复乡', '121.423', '23.6691', 'Guangfu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713527', '丰滨乡', '713500', '丰滨', '3', '3', '977', '中国,台湾,花莲县,丰滨乡', '121.519', '23.5971', 'Fengbin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713528', '瑞穗乡', '713500', '瑞穗', '3', '3', '978', '中国,台湾,花莲县,瑞穗乡', '121.376', '23.4968', 'Ruisui', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713529', '富里乡', '713500', '富里', '3', '3', '983', '中国,台湾,花莲县,富里乡', '121.25', '23.18', 'Fuli', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713530', '秀林乡', '713500', '秀林', '3', '3', '972', '中国,台湾,花莲县,秀林乡', '121.62', '24.1166', 'Xiulin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713531', '万荣乡', '713500', '万荣', '3', '3', '979', '中国,台湾,花莲县,万荣乡', '121.407', '23.7153', 'Wanrong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713532', '卓溪乡', '713500', '卓溪', '3', '3', '982', '中国,台湾,花莲县,卓溪乡', '121.303', '23.3464', 'Zhuoxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713600', '澎湖县', '710000', '澎湖', '2', '6', '8', '中国,台湾,澎湖县', '119.566', '23.5697', 'Penghu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713601', '马公市', '713600', '马公', '3', '6', '880', '中国,台湾,澎湖县,马公市', '119.566', '23.5658', 'Magong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713621', '湖西乡', '713600', '湖西', '3', '6', '885', '中国,台湾,澎湖县,湖西乡', '119.66', '23.5834', 'Huxi', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713622', '白沙乡', '713600', '白沙', '3', '6', '884', '中国,台湾,澎湖县,白沙乡', '119.598', '23.6661', 'Baisha', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713623', '西屿乡', '713600', '西屿', '3', '6', '881', '中国,台湾,澎湖县,西屿乡', '119.507', '23.6008', 'Xiyu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713624', '望安乡', '713600', '望安', '3', '6', '882', '中国,台湾,澎湖县,望安乡', '119.501', '23.3575', 'Wangan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713625', '七美乡', '713600', '七美', '3', '6', '883', '中国,台湾,澎湖县,七美乡', '119.424', '23.206', 'Qimei', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713700', '金门县', '710000', '金门', '2', '82', '8', '中国,台湾,金门县', '118.317', '24.4327', 'Jinmen', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713701', '金城镇', '713700', '金城', '3', '82', '893', '中国,台湾,金门县,金城镇', '118.317', '24.4167', 'Jincheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713702', '金湖镇', '713700', '金湖', '3', '82', '891', '中国,台湾,金门县,金湖镇', '118.42', '24.4386', 'Jinhu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713703', '金沙镇', '713700', '金沙', '3', '82', '890', '中国,台湾,金门县,金沙镇', '118.428', '24.4811', 'Jinsha', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713704', '金宁乡', '713700', '金宁', '3', '82', '892', '中国,台湾,金门县,金宁乡', '118.335', '24.4567', 'Jinning', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713705', '烈屿乡', '713700', '烈屿', '3', '82', '894', '中国,台湾,金门县,烈屿乡', '118.247', '24.4331', 'Lieyu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713706', '乌丘乡', '713700', '乌丘', '3', '82', '896', '中国,台湾,金门县,乌丘乡', '118.32', '24.435', 'Wuqiu', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713800', '连江县', '710000', '连江', '2', '836', '2', '中国,台湾,连江县', '119.54', '26.1974', 'Lienchiang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713801', '南竿乡', '713800', '南竿', '3', '836', '209', '中国,台湾,连江县,南竿乡', '119.944', '26.144', 'Nangan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713802', '北竿乡', '713800', '北竿', '3', '836', '210', '中国,台湾,连江县,北竿乡', '120.001', '26.222', 'Beigan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713803', '莒光乡', '713800', '莒光', '3', '836', '211', '中国,台湾,连江县,莒光乡', '119.94', '25.9763', 'Juguang', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('713804', '东引乡', '713800', '东引', '3', '836', '212', '中国,台湾,连江县,东引乡', '120.494', '26.3662', 'Dongyin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810000', '香港特别行政区', '100000', '香港', '1', '0', '0', '中国,香港特别行政区', '114.173', '22.32', 'Hong Kong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810100', '香港岛', '810000', '香港岛', '2', '852', '999077', '中国,香港特别行政区,香港岛', '114.177', '22.2664', 'Hong Kong Island', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810101', '中西区', '810100', '中西区', '3', '852', '999077', '中国,香港特别行政区,香港岛,中西区', '114.154', '22.282', 'Central and Western District', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810102', '湾仔区', '810100', '湾仔区', '3', '852', '999077', '中国,香港特别行政区,香港岛,湾仔区', '114.183', '22.2764', 'Wan Chai District', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810103', '东区', '810100', '东区', '3', '852', '999077', '中国,香港特别行政区,香港岛,东区', '114.256', '22.2628', 'Eastern District', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810104', '南区', '810100', '南区', '3', '852', '999077', '中国,香港特别行政区,香港岛,南区', '114.174', '22.2468', 'Southern District', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810200', '九龙', '810000', '九龙', '2', '852', '999077', '中国,香港特别行政区,九龙', '114.175', '22.3271', 'Kowloon', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810201', '油尖旺区', '810200', '油尖旺', '3', '852', '999077', '中国,香港特别行政区,九龙,油尖旺区', '114.173', '22.3117', 'Yau Tsim Mong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810202', '深水埗区', '810200', '深水埗', '3', '852', '999077', '中国,香港特别行政区,九龙,深水埗区', '114.167', '22.3282', 'Sham Shui Po', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810203', '九龙城区', '810200', '九龙城', '3', '852', '999077', '中国,香港特别行政区,九龙,九龙城区', '114.195', '22.3267', 'Jiulongcheng', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810204', '黄大仙区', '810200', '黄大仙', '3', '852', '999077', '中国,香港特别行政区,九龙,黄大仙区', '114.199', '22.3363', 'Wong Tai Sin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810205', '观塘区', '810200', '观塘', '3', '852', '999077', '中国,香港特别行政区,九龙,观塘区', '114.231', '22.3094', 'Kwun Tong', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810300', '新界', '810000', '新界', '2', '852', '999077', '中国,香港特别行政区,新界', '114.202', '22.3418', 'New Territories', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810301', '荃湾区', '810300', '荃湾', '3', '852', '999077', '中国,香港特别行政区,新界,荃湾区', '114.123', '22.371', 'Tsuen Wan', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810302', '屯门区', '810300', '屯门', '3', '852', '999077', '中国,香港特别行政区,新界,屯门区', '113.977', '22.391', 'Tuen Mun', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810303', '元朗区', '810300', '元朗', '3', '852', '999077', '中国,香港特别行政区,新界,元朗区', '114.04', '22.4433', 'Yuen Long', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810304', '北区', '810300', '北区', '3', '852', '999077', '中国,香港特别行政区,新界,北区', '114.149', '22.4941', 'North District', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810305', '大埔区', '810300', '大埔', '3', '852', '999077', '中国,香港特别行政区,新界,大埔区', '114.172', '22.4457', 'Tai Po', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810306', '西贡区', '810300', '西贡', '3', '852', '999077', '中国,香港特别行政区,新界,西贡区', '114.279', '22.3794', 'Sai Kung', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810307', '沙田区', '810300', '沙田', '3', '852', '999077', '中国,香港特别行政区,新界,沙田区', '114.192', '22.3793', 'Sha Tin', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810308', '葵青区', '810300', '葵青', '3', '852', '999077', '中国,香港特别行政区,新界,葵青区', '114.139', '22.3639', 'Kwai Tsing', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('810309', '离岛区', '810300', '离岛', '3', '852', '999077', '中国,香港特别行政区,新界,离岛区', '113.946', '22.2815', 'Outlying Islands', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('820000', '澳门特别行政区', '100000', '澳门', '1', '0', '0', '中国,澳门特别行政区', '113.549', '22.199', 'Macau', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('820100', '澳门半岛', '820000', '澳门半岛', '2', '853', '999078', '中国,澳门特别行政区,澳门半岛', '113.549', '22.1988', 'MacauPeninsula', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('820101', '花地玛堂区', '820100', '花地玛堂区', '3', '853', '999078', '中国,澳门特别行政区,澳门半岛,花地玛堂区', '113.552', '22.2081', 'Nossa Senhora de Fatima', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('820102', '圣安多尼堂区', '820100', '圣安多尼堂区', '3', '853', '999078', '中国,澳门特别行政区,澳门半岛,圣安多尼堂区', '113.564', '22.1238', 'Santo Antonio', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('820103', '大堂区', '820100', '大堂', '3', '853', '999078', '中国,澳门特别行政区,澳门半岛,大堂区', '113.553', '22.1884', 'Sé', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('820104', '望德堂区', '820100', '望德堂区', '3', '853', '999078', '中国,澳门特别行政区,澳门半岛,望德堂区', '113.551', '22.1941', 'Sao Lazaro', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('820105', '风顺堂区', '820100', '风顺堂区', '3', '853', '999078', '中国,澳门特别行政区,澳门半岛,风顺堂区', '113.542', '22.1874', 'Sao Lourenco', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('820200', '氹仔岛', '820000', '氹仔岛', '2', '853', '999078', '中国,澳门特别行政区,氹仔岛', '113.578', '22.1568', 'Taipa', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('820201', '嘉模堂区', '820200', '嘉模堂区', '3', '853', '999078', '中国,澳门特别行政区,氹仔岛,嘉模堂区', '113.565', '22.149', 'Our Lady Of Carmels Parish', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('820300', '路环岛', '820000', '路环岛', '2', '853', '999078', '中国,澳门特别行政区,路环岛', '113.565', '22.1162', 'Coloane', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('820301', '圣方济各堂区', '820300', '圣方济各堂区', '3', '853', '999078', '中国,澳门特别行政区,路环岛,圣方济各堂区', '113.56', '22.1235', 'St Francis Xaviers Parish', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('900000', '钓鱼岛', '100000', '钓鱼岛', '1', '0', '0', '中国,钓鱼岛', '123.478', '25.7424', 'DiaoyuDao', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+INSERT INTO `fanyun_base_area` VALUES ('2000000', '马来西亚', '100000', '马来西亚', '1', '0', '0', '马来西亚', '0', '0', '', '2019-02-18 15:11:32', '2019-02-18 15:11:32', null);
+
+-- ----------------------------
+-- Table structure for fanyun_base_attachments
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_base_attachments`;
+CREATE TABLE `fanyun_base_attachments` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '附件名称',
+  `md5` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'md5码',
+  `path` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '附件路径',
+  `url` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '附件url',
+  `class` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '未分类' COMMENT '分类',
+  `size` bigint(20) unsigned DEFAULT NULL,
+  `file_type` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
+  `download` bigint(20) unsigned NOT NULL DEFAULT '0',
+  `klass` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '关联模型',
+  `objid` int(10) unsigned DEFAULT NULL COMMENT '关联id',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `store_id` int(10) unsigned DEFAULT '0',
+  PRIMARY KEY (`id`),
+  KEY `idx_md5` (`md5`),
+  KEY `idx_klass_objid` (`klass`,`objid`)
+) ENGINE=InnoDB AUTO_INCREMENT=5135 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+
+-- ----------------------------
+-- Records of fanyun_base_attachments
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_base_dictionary
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_base_dictionary`;
+CREATE TABLE `fanyun_base_dictionary` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `dictionary_table_code` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '数据字典表',
+  `dictionary_code` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '数据字典代码',
+  `key` varchar(21) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '程序中使用,数据库使用value',
+  `value` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '编码',
+  `name` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '名称',
+  `input_code` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '输入码,通常用于保留拼音',
+  `sort` int(11) NOT NULL COMMENT '排序',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`),
+  KEY `idx_table_code` (`dictionary_table_code`,`dictionary_code`),
+  KEY `idx_deleted_at` (`deleted_at`)
+) ENGINE=InnoDB AUTO_INCREMENT=66 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+
+-- ----------------------------
+-- Records of fanyun_base_dictionary
+-- ----------------------------
+INSERT INTO `fanyun_base_dictionary` VALUES ('1', 'global', 'sex', 'male', '1', '男', '', '0', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('2', 'global', 'sex', 'female', '2', '女', '', '0', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('15', 'global', 'bool', '', '0', '否', '', '0', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('16', 'global', 'bool', '', '1', '是', '', '0', '2017-01-01 00:00:00', '2017-01-01 00:00:00', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('17', 'template', 'status', '0', '0', '下架', '', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('18', 'template', 'status', '1', '1', '上架', '0', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('19', 'agent', 'status', '1', '1', '待审核', '', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('20', 'agent', 'status', '2', '2', '正常', '', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('21', 'agent', 'status', '0', '0', '无效账号', '', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('22', 'setting', 'status', '0', '0', '不显示', '', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('23', 'setting', 'status', '0', '0', '不显示', '', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('24', 'setting', 'status', '1', '1', '显示', '', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('25', 'goods', 'status', '', '1', '上架', '', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('26', 'goods', 'status', '', '2', '下架', '', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('27', 'order', 'status', '', '1', '待付款', '', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('28', 'order', 'status', '', '4', '申请退款中', '', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('29', 'order', 'status', '', '5', '已退款', '', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('30', 'order', 'status', '', '6', '已完成', '', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('31', 'order', 'status', '', '2', '已完成', '', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('32', 'order', 'status', '', '3', '待收货', '', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('33', 'template', 'status', '2', '2', '可见', '0', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('34', 'goods', 'status', '', '3', '下架', '', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('35', 'order', 'payment', '0', '0', '未支付', '0', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('36', 'order', 'payment', '1', '1', '兑换码兑换', '1', '1', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('37', 'order', 'payment', '2', '2', '微信支付', '2', '2', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('38', 'order', 'payment', '3', '3', '代付', '3', '3', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('39', 'auth', 'status', '1', '1', '未提交审核', '', '0', '2018-03-24 21:23:29', '2018-03-24 21:23:29', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('40', 'auth', 'status', '2', '2', '正在审核', '', '0', '2018-03-24 21:23:29', '2018-03-24 21:23:29', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('41', 'auth', 'status', '3', '3', '审核失败', '', '0', '2018-03-24 21:23:29', '2018-03-24 21:23:29', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('42', 'auth', 'status', '4', '4', '审核通过', '', '0', '2018-03-24 21:23:29', '2018-03-24 21:23:29', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('43', 'auth', 'status', '5', '5', '已发布', '', '0', '2018-03-24 21:23:29', '2018-03-24 21:23:29', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('44', 'album', 'nav', 'nav_1', '1', '一键拨号', '111', '1', '2018-05-22 09:36:08', '2018-05-22 09:36:08', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('45', 'album', 'nav', 'nav_2', '2', '一键导航', '111', '2', '2018-05-22 09:38:05', '2018-05-22 09:38:05', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('46', 'album', 'nav', 'nav_3', '3', '跳转小程序', '111', '3', '2018-05-22 09:38:37', '2018-05-22 09:38:37', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('47', 'album', 'nav', 'nav_4', '4', '跳转页面', '111', '3', '2018-05-22 09:39:25', '2018-05-22 09:39:25', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('48', 'album', 'top_buttom', 'top', '1', '顶部', '111', '1', '2018-05-22 09:41:27', '2018-05-22 09:41:27', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('49', 'album', 'top_buttom', 'buttom', '0', '底部', '111', '2', '2018-05-22 09:41:56', '2018-05-22 09:41:56', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('50', 'album', 'page', 'detail', '/pages/more_news/more_news', '咨讯动态', '111', '1', '2018-05-22 09:44:47', '2018-05-23 15:23:02', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('51', 'album', 'page', 'index', '/pages/index/index', '主页', '111', '0', '2018-05-22 10:31:34', '2018-05-22 10:31:34', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('52', 'album', 'page', 'info_list', '/pages/content/index', '新闻列表', '111', '1', '2018-05-22 11:34:51', '2018-05-23 15:26:32', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('53', 'album', 'page', 'info_detail', '/pages/content/content', '新闻详情', '111', '1', '2018-05-22 11:35:17', '2018-05-23 15:27:17', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('54', 'user_info', 'setup', '0', '0', '注册', '0', '99', '2018-05-29 05:56:09', '2018-05-29 05:56:09', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('55', 'user_info', 'setup', '1', '1', '授权小程序', '1', '98', '2018-05-29 05:56:46', '2018-05-29 05:56:46', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('56', 'user_info', 'setup', '2', '2', '已完成授权', '2', '97', '2018-05-29 05:57:28', '2018-05-29 05:57:28', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('57', 'recharge', 'share', '1', '0.1', '充值返佣', '', '0', '2018-07-13 14:38:04', '2018-07-13 14:38:04', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('58', 'recharge', 'share', '2', '0.1', '消费返佣', '', '0', '2018-07-13 14:38:04', '2018-07-13 14:38:04', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('59', 'cost', 'type', '金额', '0', '金额', '', '0', '2018-07-13 14:48:23', '2018-07-13 14:48:23', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('60', 'cost', 'type', '折扣', '1', '折扣', '', '0', '2018-07-13 14:48:23', '2018-07-13 14:48:23', null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('61', 'album', 'new', '0', '0', '无', '0', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('62', 'album', 'new', '1', '1', '新品', '1', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('63', 'album', 'new', '2', '2', '促销', '2', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('64', 'album', 'new', '3', '3', '特价', '3', '0', null, null, null);
+INSERT INTO `fanyun_base_dictionary` VALUES ('65', 'album', 'new', '4', '4', '爆款', '4', '0', null, null, null);
+
+-- ----------------------------
+-- Table structure for fanyun_cache
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_cache`;
+CREATE TABLE `fanyun_cache` (
+  `key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
+  `value` text COLLATE utf8mb4_unicode_ci NOT NULL,
+  `expiration` int(11) NOT NULL
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_cache
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_classes
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_classes`;
+CREATE TABLE `fanyun_classes` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `class` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '分类',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `store_id` int(10) unsigned DEFAULT '0',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+
+-- ----------------------------
+-- Records of fanyun_classes
+-- ----------------------------
+INSERT INTO `fanyun_classes` VALUES ('1', '未分类', '2017-09-18 03:29:10', '2017-09-18 03:29:10', '0');
+INSERT INTO `fanyun_classes` VALUES ('4', '其他', '2018-07-31 14:12:54', '2018-07-31 14:12:54', '1');
+INSERT INTO `fanyun_classes` VALUES ('5', 't6', '2018-08-15 12:24:00', '2018-08-15 12:24:00', '1');
+INSERT INTO `fanyun_classes` VALUES ('7', '天天家居惠', '2018-08-23 16:16:33', '2018-08-23 16:16:33', '1');
+INSERT INTO `fanyun_classes` VALUES ('9', '户外家具', '2019-04-06 21:12:50', '2019-04-06 21:12:50', '1');
+INSERT INTO `fanyun_classes` VALUES ('11', 'zjxl', '2019-06-06 13:58:35', '2019-06-06 13:58:35', '21405');
+
+-- ----------------------------
+-- Table structure for fanyun_customer_cat_record
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_customer_cat_record`;
+CREATE TABLE `fanyun_customer_cat_record` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `store_id` int(10) unsigned NOT NULL COMMENT 'store_id',
+  `open_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'open_id',
+  `agent_id` int(10) unsigned NOT NULL COMMENT 'agent_id',
+  `cat_id` int(10) unsigned NOT NULL COMMENT 'cat_id',
+  `parent_id` int(10) unsigned NOT NULL COMMENT 'style_id',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=11971 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_customer_cat_record
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_customer_details
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_customer_details`;
+CREATE TABLE `fanyun_customer_details` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `agent_id` int(10) unsigned NOT NULL COMMENT '经销商id',
+  `store_id` int(10) unsigned NOT NULL COMMENT 'store_id',
+  `open_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'open_id',
+  `tips` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '标签',
+  `purpose_level` int(10) unsigned NOT NULL DEFAULT '1' COMMENT '意向等级 1 25% 2 50% 3 75% 4 100%',
+  `comment` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '备注',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `address` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '地址',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_customer_details
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_furniture_formid
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_furniture_formid`;
+CREATE TABLE `fanyun_furniture_formid` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `openid` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'openid',
+  `formid` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'formid',
+  `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '状态:0:未使用,1:已使用',
+  `store_id` int(11) NOT NULL COMMENT '站点id',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=3572 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_furniture_formid
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_furniture_goods
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_furniture_goods`;
+CREATE TABLE `fanyun_furniture_goods` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '产品名称',
+  `goods_id` int(11) NOT NULL COMMENT '商城小程序中商品id',
+  `img` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '产品图片',
+  `sort` int(11) NOT NULL COMMENT '排序,越大越靠前',
+  `status` tinyint(4) NOT NULL COMMENT '状态:1:激活;0:未激活',
+  `store_id` int(11) NOT NULL COMMENT '站点',
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_furniture_goods
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_furniture_goods_category
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_furniture_goods_category`;
+CREATE TABLE `fanyun_furniture_goods_category` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `pid` int(11) NOT NULL COMMENT '父ID',
+  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '分类名称',
+  `sort` int(11) NOT NULL COMMENT '排序,越大越靠前',
+  `status` tinyint(4) NOT NULL COMMENT '状态:1:启用;0:不启用',
+  `store_id` int(11) NOT NULL COMMENT '站点',
+  `deleted_at` timestamp NULL DEFAULT NULL,
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_furniture_goods_category
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_furniture_newgoods_booking
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_furniture_newgoods_booking`;
+CREATE TABLE `fanyun_furniture_newgoods_booking` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `user_id` int(11) NOT NULL COMMENT '用户ID',
+  `newgoods_id` int(11) NOT NULL COMMENT '新品ID',
+  `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '联系电话',
+  `receiver_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '收货人姓名',
+  `receiver_address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '收货人地址',
+  `remark` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '收货人地址',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `store_id` int(11) DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_furniture_newgoods_booking
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_furniture_newgoods_comment
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_furniture_newgoods_comment`;
+CREATE TABLE `fanyun_furniture_newgoods_comment` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `user_id` int(11) NOT NULL COMMENT '用户ID',
+  `newgoods_id` int(11) NOT NULL COMMENT '新品ID',
+  `comments_field_1` int(11) NOT NULL COMMENT '评价条目1评分',
+  `comments_field_2` int(11) NOT NULL COMMENT '评价条目2评分',
+  `comments_field_3` int(11) NOT NULL COMMENT '评价条目3评分',
+  `comments_field_4` int(11) NOT NULL COMMENT '评价条目4评分',
+  `content` text COLLATE utf8mb4_unicode_ci COMMENT '评论详情',
+  `picture` text COLLATE utf8mb4_unicode_ci COMMENT '图片',
+  `response` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '商家回复',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `store_id` int(11) DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_furniture_newgoods_comment
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_furniture_newgoods_info
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_furniture_newgoods_info`;
+CREATE TABLE `fanyun_furniture_newgoods_info` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '标题',
+  `thumb` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '缩略图',
+  `content` text COLLATE utf8mb4_unicode_ci COMMENT '详情',
+  `comments_field_1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '评价题目1',
+  `comments_field_2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '评价题目2',
+  `comments_field_3` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '评价题目3',
+  `comments_field_4` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '评价题目4',
+  `sort` int(11) DEFAULT '0' COMMENT '排序,越大越靠前',
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `store_id` int(11) DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+
+-- ----------------------------
+-- Records of fanyun_furniture_newgoods_info
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_migrations
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_migrations`;
+CREATE TABLE `fanyun_migrations` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
+  `batch` int(11) NOT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=366 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+
+-- ----------------------------
+-- Records of fanyun_migrations
+-- ----------------------------
+INSERT INTO `fanyun_migrations` VALUES ('1', '2016_06_01_000001_create_oauth_auth_codes_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('2', '2016_06_01_000002_create_oauth_access_tokens_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('3', '2016_06_01_000003_create_oauth_refresh_tokens_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('4', '2016_06_01_000004_create_oauth_clients_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('5', '2016_06_01_000005_create_oauth_personal_access_clients_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('6', '2017_04_02_113151_create_account_logs_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('7', '2017_05_30_203519_create_admin_access_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('8', '2017_05_30_203520_create_admin_menus_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('9', '2017_05_30_203521_create_admin_operate_logs_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('10', '2017_05_30_203521_create_admin_roles_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('11', '2017_05_30_203522_create_admin_users_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('12', '2017_05_30_203523_create_base_area_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('13', '2017_05_30_203523_create_base_attachments_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('14', '2017_05_30_203524_create_base_dictionary_option_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('15', '2017_05_30_203524_create_base_settings_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('16', '2017_08_02_143732_create_classes_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('17', '2017_09_15_030701_create_user_info_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('18', '2017_09_15_032720_create_sw_order_info_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('19', '2017_09_15_053718_create_sw_agent_info_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('20', '2017_09_15_054135_create_sw_case_info_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('21', '2017_09_15_054235_create_sw_coupon_info_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('22', '2017_09_15_060756_create_sw_category_info_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('23', '2017_09_15_062746_creat_sw_designer_info_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('24', '2017_09_18_013946_create_template_info_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('25', '2017_09_18_023846_create_user_coupon_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('26', '2017_09_18_025109_create_user_address_table', '1');
+INSERT INTO `fanyun_migrations` VALUES ('27', '2017_09_18_100531_add_status_to_template_info_table', '2');
+INSERT INTO `fanyun_migrations` VALUES ('28', '2017_09_20_062627_add_auth_to_sw_agent_info_table', '3');
+INSERT INTO `fanyun_migrations` VALUES ('29', '2017_09_20_081356_add_status_to_sw_agent_info_table', '4');
+INSERT INTO `fanyun_migrations` VALUES ('30', '2017_09_20_094318_add_agent_to_sw_agent_info_table', '5');
+INSERT INTO `fanyun_migrations` VALUES ('31', '2017_09_21_025424_add_colum_to_sw_order_info_table', '5');
+INSERT INTO `fanyun_migrations` VALUES ('32', '2017_09_26_070906_create_sw_article_info_table', '6');
+INSERT INTO `fanyun_migrations` VALUES ('33', '2017_09_28_073950_add_sale_to_template_info_table', '7');
+INSERT INTO `fanyun_migrations` VALUES ('34', '2017_10_09_052207_add_map_to_sw_agent_info_table', '8');
+INSERT INTO `fanyun_migrations` VALUES ('36', '2017_10_12_104711_add_address_to_user_info_table', '9');
+INSERT INTO `fanyun_migrations` VALUES ('37', '2017_10_12_030230_add_password_to_user_info_table', '10');
+INSERT INTO `fanyun_migrations` VALUES ('38', '2017_10_13_154629_add_password_rem_to_user_info_table', '10');
+INSERT INTO `fanyun_migrations` VALUES ('39', '2017_10_12_022014_create_wx_article_info_table', '11');
+INSERT INTO `fanyun_migrations` VALUES ('40', '2017_10_12_070805_create_menu_info_table', '11');
+INSERT INTO `fanyun_migrations` VALUES ('41', '2017_10_12_071729_create_wx_user_coupon_table', '11');
+INSERT INTO `fanyun_migrations` VALUES ('42', '2017_10_12_084013_create_user_roles_table', '11');
+INSERT INTO `fanyun_migrations` VALUES ('43', '2017_10_12_092318_add_remember_token_to_user_info', '12');
+INSERT INTO `fanyun_migrations` VALUES ('44', '2017_10_12_102044_add_app_id_to_base_settings', '12');
+INSERT INTO `fanyun_migrations` VALUES ('45', '2017_10_12_145006_create_app_info_table', '12');
+INSERT INTO `fanyun_migrations` VALUES ('46', '2017_10_12_145007_create_article_category_table', '12');
+INSERT INTO `fanyun_migrations` VALUES ('47', '2017_10_12_145012_create_s1_cart_info_table', '12');
+INSERT INTO `fanyun_migrations` VALUES ('48', '2017_10_12_145013_create_s1_comment_info_table', '12');
+INSERT INTO `fanyun_migrations` VALUES ('49', '2017_10_12_145013_create_s1_goods_images_table', '12');
+INSERT INTO `fanyun_migrations` VALUES ('50', '2017_10_12_145014_create_s1_goods_info_table', '12');
+INSERT INTO `fanyun_migrations` VALUES ('51', '2017_10_12_145014_create_s1_goodscate_info_table', '12');
+INSERT INTO `fanyun_migrations` VALUES ('52', '2017_10_12_145015_create_s1_order_goods_table', '12');
+INSERT INTO `fanyun_migrations` VALUES ('53', '2017_10_12_145016_create_s1_order_info_table', '12');
+INSERT INTO `fanyun_migrations` VALUES ('54', '2017_10_12_145016_create_s1_user_favorite_table', '12');
+INSERT INTO `fanyun_migrations` VALUES ('55', '2017_10_12_145017_create_user_access_table', '12');
+INSERT INTO `fanyun_migrations` VALUES ('56', '2017_10_12_145017_create_user_app_table', '12');
+INSERT INTO `fanyun_migrations` VALUES ('57', '2017_10_12_145020_create_wx_user_address_table', '12');
+INSERT INTO `fanyun_migrations` VALUES ('58', '2017_10_12_145021_create_wx_coupon_info_table', '12');
+INSERT INTO `fanyun_migrations` VALUES ('59', '2017_10_12_145021_create_wx_level_info_table', '12');
+INSERT INTO `fanyun_migrations` VALUES ('60', '2017_10_12_145022_create_wx_user_info_table', '12');
+INSERT INTO `fanyun_migrations` VALUES ('61', '2017_10_12_14509_create_user_template_table', '12');
+INSERT INTO `fanyun_migrations` VALUES ('62', '2017_10_16_134413_create_sw_company_info_table', '13');
+INSERT INTO `fanyun_migrations` VALUES ('63', '2017_10_20_091717_create_s1_cate_attr_table', '14');
+INSERT INTO `fanyun_migrations` VALUES ('64', '2017_10_20_105324_add_attr_info_to_s1_order_goods_table', '14');
+INSERT INTO `fanyun_migrations` VALUES ('65', '2017_10_20_105411_add_attr_info_to_s1_cart_info_table', '14');
+INSERT INTO `fanyun_migrations` VALUES ('66', '2017_10_20_165639_add_appid_show_to_sw_company_info_table', '15');
+INSERT INTO `fanyun_migrations` VALUES ('67', '2017_10_23_151942_add_url_to_s1_goods_cate_table', '16');
+INSERT INTO `fanyun_migrations` VALUES ('68', '2017_10_24_090145_create_order_refund_table', '17');
+INSERT INTO `fanyun_migrations` VALUES ('69', '2017_10_24_165004_add_api_token_to_user_info_table', '17');
+INSERT INTO `fanyun_migrations` VALUES ('70', '2017_10_24_172604_add_tokrn_qr_to_app_info_table', '18');
+INSERT INTO `fanyun_migrations` VALUES ('71', '2017_10_25_090151_add_images_to_s1_comment_info_table', '18');
+INSERT INTO `fanyun_migrations` VALUES ('72', '2017_10_21_114604_add_qrcode_to_sw_agent_info_table', '19');
+INSERT INTO `fanyun_migrations` VALUES ('73', '2017_10_25_093255_add_tem_id_to_template_info_table', '19');
+INSERT INTO `fanyun_migrations` VALUES ('74', '2017_10_25_134440_add_audit_to_app_info_table', '20');
+INSERT INTO `fanyun_migrations` VALUES ('75', '2017_10_25_150334_add_no_reason_to_app_info_table', '20');
+INSERT INTO `fanyun_migrations` VALUES ('76', '2017_10_28_173210_add_col_to_app_info_table', '21');
+INSERT INTO `fanyun_migrations` VALUES ('77', '2017_10_28_202629_add_colum_toapp_info_table', '22');
+INSERT INTO `fanyun_migrations` VALUES ('78', '2017_10_30_171836_add_colum_to_sw_agent_info_table', '23');
+INSERT INTO `fanyun_migrations` VALUES ('79', '2017_11_01_112421_add_uri_to_sw_agent_info_table', '24');
+INSERT INTO `fanyun_migrations` VALUES ('80', '2017_11_03_102154_add_qrcode_to_sw_cases_info_table', '25');
+INSERT INTO `fanyun_migrations` VALUES ('81', '2017_11_03_181217_add_some_qqetc_to_user_info_table', '26');
+INSERT INTO `fanyun_migrations` VALUES ('82', '2017_11_04_110810_add_category_sw_cases_info_table', '26');
+INSERT INTO `fanyun_migrations` VALUES ('83', '2017_11_09_154258_add_user_template_id_to_app_info_table', '27');
+INSERT INTO `fanyun_migrations` VALUES ('84', '2017_11_10_180031_add_app_user_table', '28');
+INSERT INTO `fanyun_migrations` VALUES ('85', '2017_11_10_211636_create_cache_table', '28');
+INSERT INTO `fanyun_migrations` VALUES ('86', '2017_11_15_130911_create_crm_leads_table', '29');
+INSERT INTO `fanyun_migrations` VALUES ('87', '2017_11_15_181646_add_qrcode_to_template_info_table', '29');
+INSERT INTO `fanyun_migrations` VALUES ('89', '2017_11_19_181003_add_wechat_id_qq_id_to_user_info_table', '30');
+INSERT INTO `fanyun_migrations` VALUES ('90', '2017_11_19_135409_create_template_price_table', '31');
+INSERT INTO `fanyun_migrations` VALUES ('91', '2017_11_20_110919_dropforeign_to_postagree_info_table', '31');
+INSERT INTO `fanyun_migrations` VALUES ('92', '2017_11_20_153904_add_price_id_to_sw_order_info_table', '31');
+INSERT INTO `fanyun_migrations` VALUES ('93', '2017_11_22_091130_create_sw_code_info_table', '32');
+INSERT INTO `fanyun_migrations` VALUES ('94', '2017_11_22_152951_add_end_time_to_user_template_table', '32');
+INSERT INTO `fanyun_migrations` VALUES ('95', '2017_11_22_180248_add_token_to_user_info_table', '33');
+INSERT INTO `fanyun_migrations` VALUES ('96', '2017_11_22_181913_create_news_category_table', '33');
+INSERT INTO `fanyun_migrations` VALUES ('97', '2017_11_22_183133_add_cate_id_to_sw_article_info_table', '33');
+INSERT INTO `fanyun_migrations` VALUES ('98', '2017_11_23_093051_add_pid_to_news_category_table', '34');
+INSERT INTO `fanyun_migrations` VALUES ('99', '2017_11_23_172745_add_out_trade_no_to_sw_order_info_table', '35');
+INSERT INTO `fanyun_migrations` VALUES ('100', '2017_11_24_154623_add_copy_id_to_template_info_table', '35');
+INSERT INTO `fanyun_migrations` VALUES ('101', '2017_11_24_182526_add_paid_at_to_sw_order_info_table', '36');
+INSERT INTO `fanyun_migrations` VALUES ('102', '2017_12_06_180020_add_type_to_sw_order_info_table', '37');
+INSERT INTO `fanyun_migrations` VALUES ('103', '2017_12_06_182725_add_user_template_to_sw_order_info_table', '37');
+INSERT INTO `fanyun_migrations` VALUES ('104', '2017_11_30_102211_create_card_user_info_table', '38');
+INSERT INTO `fanyun_migrations` VALUES ('105', '2017_11_30_102930_create_card_user_progress_table', '38');
+INSERT INTO `fanyun_migrations` VALUES ('106', '2017_11_30_104111_create_card_user_honor_table', '38');
+INSERT INTO `fanyun_migrations` VALUES ('107', '2017_11_30_110019_create_card_user_project_table', '38');
+INSERT INTO `fanyun_migrations` VALUES ('108', '2017_11_30_110501_create_card_user_trend_table', '38');
+INSERT INTO `fanyun_migrations` VALUES ('109', '2017_11_30_163928_create_card_banner_table', '38');
+INSERT INTO `fanyun_migrations` VALUES ('110', '2017_12_04_095210_add_location_to_card_user_info_table', '38');
+INSERT INTO `fanyun_migrations` VALUES ('111', '2017_12_04_103818_add_qrcode_to_card_user_info_table', '38');
+INSERT INTO `fanyun_migrations` VALUES ('112', '2017_12_06_102208_add_shade_to_card_user_info_table', '38');
+INSERT INTO `fanyun_migrations` VALUES ('113', '2017_12_11_163134_add_agent_id_to_sw_code_info_table', '39');
+INSERT INTO `fanyun_migrations` VALUES ('114', '2017_12_11_173409_add_payment_to_sw_order_info_table', '39');
+INSERT INTO `fanyun_migrations` VALUES ('115', '2017_12_12_111111_add_open_status_to_sw_code_info', '40');
+INSERT INTO `fanyun_migrations` VALUES ('116', '2017_12_15_180446_add_ICP_to_sw_agent_info_table', '41');
+INSERT INTO `fanyun_migrations` VALUES ('117', '2017_12_14_160035_add_test_to_card_user_info_table', '42');
+INSERT INTO `fanyun_migrations` VALUES ('119', '2017_12_14_160256_create_user_app_account_table', '43');
+INSERT INTO `fanyun_migrations` VALUES ('120', '2017_12_26_162408_add_detail_address_to_card_user_info_table', '44');
+INSERT INTO `fanyun_migrations` VALUES ('121', '2018_01_17_200140_add_get_status_to_sw_code_info', '44');
+INSERT INTO `fanyun_migrations` VALUES ('122', '2018_01_17_200140_add_sort_to_sw_card_info', '44');
+INSERT INTO `fanyun_migrations` VALUES ('123', '2018_01_29_192233_add_price_info_to_template_info', '44');
+INSERT INTO `fanyun_migrations` VALUES ('124', '2018_02_06_145120_create_template_category_relation_table', '44');
+INSERT INTO `fanyun_migrations` VALUES ('125', '2018_02_06_164525_create_card_setting_table', '45');
+INSERT INTO `fanyun_migrations` VALUES ('126', '2018_03_06_204645_add_login_at_to_user_info', '45');
+INSERT INTO `fanyun_migrations` VALUES ('127', '2018_03_06_221442_add_remain_money_to_sw_agent_info', '45');
+INSERT INTO `fanyun_migrations` VALUES ('128', '2018_03_07_102325_create_case_categories_table', '46');
+INSERT INTO `fanyun_migrations` VALUES ('129', '2018_03_07_102705_create_case_category_relations_table', '46');
+INSERT INTO `fanyun_migrations` VALUES ('130', '2018_03_16_094154_create_app_testers_table', '47');
+INSERT INTO `fanyun_migrations` VALUES ('131', '2018_03_22_122250_add_setup_to_user_info', '48');
+INSERT INTO `fanyun_migrations` VALUES ('132', '2018_03_25_213646_add_color_to_cp_company_info', '49');
+INSERT INTO `fanyun_migrations` VALUES ('133', '2018_03_25_223857_add_type_to_template_info', '50');
+INSERT INTO `fanyun_migrations` VALUES ('134', '2018_03_25_223959_add_mchid_to_app_info', '50');
+INSERT INTO `fanyun_migrations` VALUES ('135', '2018_04_04_103045_add_pem_to_app_info', '51');
+INSERT INTO `fanyun_migrations` VALUES ('136', '2018_04_05_232713_create_xcx_sets_table', '52');
+INSERT INTO `fanyun_migrations` VALUES ('137', '2018_04_04_092007_create_base_videos_table', '53');
+INSERT INTO `fanyun_migrations` VALUES ('138', '2018_04_04_113009_add_oss_key_to_base_videos_table', '53');
+INSERT INTO `fanyun_migrations` VALUES ('139', '2018_04_04_143012_create_sw_help_info_table', '53');
+INSERT INTO `fanyun_migrations` VALUES ('140', '2018_04_04_143054_create_sw_help_category_table', '53');
+INSERT INTO `fanyun_migrations` VALUES ('141', '2018_04_04_165345_create_sw_cases_category_table', '53');
+INSERT INTO `fanyun_migrations` VALUES ('142', '2018_04_06_215808_add_pic_sw_help_info_table', '53');
+INSERT INTO `fanyun_migrations` VALUES ('143', '2018_04_16_132630_add_case_cate_id_to_template_info', '54');
+INSERT INTO `fanyun_migrations` VALUES ('144', '2018_04_17_090810_add_seo_to_template_info', '55');
+INSERT INTO `fanyun_migrations` VALUES ('145', '2018_04_17_091248_add_seo_to_sw_cases_info', '55');
+INSERT INTO `fanyun_migrations` VALUES ('146', '2018_05_02_180307_create_agent_navbar_setting_table', '56');
+INSERT INTO `fanyun_migrations` VALUES ('147', '2018_05_03_111645_add_can_pay_to_agent_info_table', '56');
+INSERT INTO `fanyun_migrations` VALUES ('148', '2018_04_20_145600_add_user_id_to_card_setting', '57');
+INSERT INTO `fanyun_migrations` VALUES ('149', '2018_04_24_133950_change_userid_to_appid_card_banner', '57');
+INSERT INTO `fanyun_migrations` VALUES ('150', '2018_04_24_134033_change_userid_to_appid_card_setting', '58');
+INSERT INTO `fanyun_migrations` VALUES ('151', '2018_04_24_134117_change_userid_to_appid_card__user_honor', '58');
+INSERT INTO `fanyun_migrations` VALUES ('152', '2018_04_24_134143_change_userid_to_appid_card__user_info', '58');
+INSERT INTO `fanyun_migrations` VALUES ('153', '2018_04_24_134224_change_userid_to_appid_card_user_progress', '58');
+INSERT INTO `fanyun_migrations` VALUES ('154', '2018_04_24_134300_change_userid_to_appid_card_user_project', '58');
+INSERT INTO `fanyun_migrations` VALUES ('155', '2018_04_24_134329_change_userid_to_appid_card_user_trend', '58');
+INSERT INTO `fanyun_migrations` VALUES ('156', '2018_04_25_151042_add_icon_to_card_settings', '58');
+INSERT INTO `fanyun_migrations` VALUES ('157', '2018_04_26_113259_change_copyright_to_null_card_setting', '58');
+INSERT INTO `fanyun_migrations` VALUES ('158', '2018_05_03_163426_alter_detail_card_user_project_table', '58');
+INSERT INTO `fanyun_migrations` VALUES ('159', '2018_05_03_163536_alter_content_card_user_trend_table', '58');
+INSERT INTO `fanyun_migrations` VALUES ('160', '2018_05_10_101204_alter_user_app_account_table', '59');
+INSERT INTO `fanyun_migrations` VALUES ('161', '2018_05_10_132729_alter_card_banner_table', '59');
+INSERT INTO `fanyun_migrations` VALUES ('162', '2018_05_10_132820_alter_card_setting_table', '59');
+INSERT INTO `fanyun_migrations` VALUES ('163', '2018_05_10_133236_alter_card_user_honor_table', '59');
+INSERT INTO `fanyun_migrations` VALUES ('164', '2018_05_10_133316_alter_card_user_info_table', '59');
+INSERT INTO `fanyun_migrations` VALUES ('165', '2018_05_10_133358_alter_card_user_progress_table', '59');
+INSERT INTO `fanyun_migrations` VALUES ('166', '2018_05_10_133439_alter_card_user_project_table', '59');
+INSERT INTO `fanyun_migrations` VALUES ('167', '2018_05_10_133950_alter_card_user_trend_table', '59');
+INSERT INTO `fanyun_migrations` VALUES ('168', '2018_05_10_134122_alter_cp_company_info', '59');
+INSERT INTO `fanyun_migrations` VALUES ('169', '2018_05_11_155844_rename_user_app_account_table', '59');
+INSERT INTO `fanyun_migrations` VALUES ('193', '2018_05_11_093446_create_album_manufacturer', '60');
+INSERT INTO `fanyun_migrations` VALUES ('194', '2018_05_11_093533_create_album_information', '60');
+INSERT INTO `fanyun_migrations` VALUES ('195', '2018_05_11_093741_create_album_agent', '60');
+INSERT INTO `fanyun_migrations` VALUES ('196', '2018_05_11_093832_create_album_comments', '60');
+INSERT INTO `fanyun_migrations` VALUES ('197', '2018_05_11_093921_create_album_product', '60');
+INSERT INTO `fanyun_migrations` VALUES ('198', '2018_05_11_094000_create_album_cat', '60');
+INSERT INTO `fanyun_migrations` VALUES ('199', '2018_05_11_094238_create_album_user', '60');
+INSERT INTO `fanyun_migrations` VALUES ('200', '2018_05_11_095140_create_album_option', '60');
+INSERT INTO `fanyun_migrations` VALUES ('201', '2018_05_11_095328_create_album_home_nav', '60');
+INSERT INTO `fanyun_migrations` VALUES ('202', '2018_05_11_095832_create_album_banner', '60');
+INSERT INTO `fanyun_migrations` VALUES ('203', '2018_05_11_152931_create_album_product_price', '60');
+INSERT INTO `fanyun_migrations` VALUES ('204', '2018_05_11_152952_create_album_product_pic', '60');
+INSERT INTO `fanyun_migrations` VALUES ('205', '2018_05_11_154406_create_album_wechat_app', '60');
+INSERT INTO `fanyun_migrations` VALUES ('206', '2018_05_14_100830_alt_album_comments', '60');
+INSERT INTO `fanyun_migrations` VALUES ('207', '2018_05_15_101118_alt_album_cat', '60');
+INSERT INTO `fanyun_migrations` VALUES ('208', '2018_05_15_101645_edit_album_option', '60');
+INSERT INTO `fanyun_migrations` VALUES ('209', '2018_05_15_102130_edit_album_product', '60');
+INSERT INTO `fanyun_migrations` VALUES ('210', '2018_05_15_102252_edit_album_product_pic', '60');
+INSERT INTO `fanyun_migrations` VALUES ('211', '2018_05_15_102331_edit_album_product_price', '60');
+INSERT INTO `fanyun_migrations` VALUES ('212', '2018_05_15_102408_edit_album_banner', '60');
+INSERT INTO `fanyun_migrations` VALUES ('213', '2018_05_15_102522_edit_album_comments', '60');
+INSERT INTO `fanyun_migrations` VALUES ('214', '2018_05_15_102741_edit_album_agent', '60');
+INSERT INTO `fanyun_migrations` VALUES ('215', '2018_05_15_102854_edit_album_information', '60');
+INSERT INTO `fanyun_migrations` VALUES ('216', '2018_05_16_110240_alt_album_comments', '61');
+INSERT INTO `fanyun_migrations` VALUES ('217', '2018_05_16_141847_delete_latitude_album_agent', '61');
+INSERT INTO `fanyun_migrations` VALUES ('218', '2018_05_16_170322_edit_album_home_nav', '61');
+INSERT INTO `fanyun_migrations` VALUES ('219', '2018_05_16_171214_drop_album_nav', '61');
+INSERT INTO `fanyun_migrations` VALUES ('220', '2018_05_16_172204_drop_album_product_pic', '61');
+INSERT INTO `fanyun_migrations` VALUES ('221', '2018_05_16_173300_edit_name_album_home_nav', '61');
+INSERT INTO `fanyun_migrations` VALUES ('222', '2018_05_17_105828_allow_null_album_nav', '61');
+INSERT INTO `fanyun_migrations` VALUES ('223', '2018_05_17_155825_edit_album_productss', '61');
+INSERT INTO `fanyun_migrations` VALUES ('224', '2018_05_17_160305_edit_album_commentss', '61');
+INSERT INTO `fanyun_migrations` VALUES ('225', '2018_05_19_095758_alert_location_album_nav', '62');
+INSERT INTO `fanyun_migrations` VALUES ('226', '2018_05_19_100034_alert_location_album_agent', '62');
+INSERT INTO `fanyun_migrations` VALUES ('227', '2018_05_21_161555_create_album_info_cat', '63');
+INSERT INTO `fanyun_migrations` VALUES ('228', '2018_05_21_162235_add_cat_album_information', '63');
+INSERT INTO `fanyun_migrations` VALUES ('229', '2018_05_21_163626_add_s_id_album_info_cat', '63');
+INSERT INTO `fanyun_migrations` VALUES ('230', '2018_05_22_121047_edit_val_base_dictionary_option', '63');
+INSERT INTO `fanyun_migrations` VALUES ('231', '2018_05_22_110850_add_account_to_user_info', '64');
+INSERT INTO `fanyun_migrations` VALUES ('232', '2018_05_24_092854_add_thumb_to_album_information', '65');
+INSERT INTO `fanyun_migrations` VALUES ('233', '2018_05_24_110541_create_album_news_table', '65');
+INSERT INTO `fanyun_migrations` VALUES ('234', '2018_05_23_181152_drop_clo_album_wechat_app', '66');
+INSERT INTO `fanyun_migrations` VALUES ('235', '2018_05_23_182551_drop_clo_album_user', '66');
+INSERT INTO `fanyun_migrations` VALUES ('236', '2018_05_24_171149_add_clone_p_album_product', '66');
+INSERT INTO `fanyun_migrations` VALUES ('237', '2018_05_25_103945_crtate_table_album_xyx_user', '66');
+INSERT INTO `fanyun_migrations` VALUES ('238', '2018_05_25_110838_add_agent_album_xyx_user', '66');
+INSERT INTO `fanyun_migrations` VALUES ('239', '2018_05_28_095727_add_clom_album_wechat_app', '67');
+INSERT INTO `fanyun_migrations` VALUES ('240', '2018_05_28_164811_add_ip_to_crm_leads', '68');
+INSERT INTO `fanyun_migrations` VALUES ('241', '2018_05_28_164924_add_ip_user_info', '68');
+INSERT INTO `fanyun_migrations` VALUES ('242', '2018_05_30_101923_add_softdelete_to_userer_template', '69');
+INSERT INTO `fanyun_migrations` VALUES ('243', '2018_05_30_110147_add_softdelete_to_sw_code_info', '69');
+INSERT INTO `fanyun_migrations` VALUES ('244', '2018_05_30_110217_add_softdelete_to_sw_coupon_info', '69');
+INSERT INTO `fanyun_migrations` VALUES ('245', '2018_05_30_110328_add_softdelete_to_sw_order_info', '69');
+INSERT INTO `fanyun_migrations` VALUES ('246', '2018_05_30_110508_add_softdelete_to_user_app', '69');
+INSERT INTO `fanyun_migrations` VALUES ('247', '2018_05_30_110649_add_softdelete_to_app_info', '69');
+INSERT INTO `fanyun_migrations` VALUES ('248', '2018_05_31_132711_add_clome_album_manufacturer', '70');
+INSERT INTO `fanyun_migrations` VALUES ('249', '2018_05_31_134227_drop_album_wechat_app', '71');
+INSERT INTO `fanyun_migrations` VALUES ('250', '2018_05_30_142732_add_agent_id_to_template_price', '72');
+INSERT INTO `fanyun_migrations` VALUES ('251', '2018_06_05_170545_creat_table_album_product_style', '73');
+INSERT INTO `fanyun_migrations` VALUES ('252', '2018_06_05_171557_alert_c_table_album_product_style', '73');
+INSERT INTO `fanyun_migrations` VALUES ('253', '2018_06_14_160235_add_notice_to_album_manufacturer', '74');
+INSERT INTO `fanyun_migrations` VALUES ('254', '2018_04_07_214022_add_desc_to_case_categories_table', '75');
+INSERT INTO `fanyun_migrations` VALUES ('255', '2018_06_19_161756_add_agent_id_to_sw_cases_info', '75');
+INSERT INTO `fanyun_migrations` VALUES ('256', '2018_06_21_112721_create_sw_cases_agent_hidden_table', '75');
+INSERT INTO `fanyun_migrations` VALUES ('257', '2018_06_21_150217_create_template_agent_hidden_table', '76');
+INSERT INTO `fanyun_migrations` VALUES ('258', '2018_06_21_163646_add_new_target_to_agent_navbar_setting', '77');
+INSERT INTO `fanyun_migrations` VALUES ('259', '2018_06_22_105426_add_phone_to_album_agent', '78');
+INSERT INTO `fanyun_migrations` VALUES ('260', '2018_06_25_160443_add_template_id_to_sw_cases_info', '79');
+INSERT INTO `fanyun_migrations` VALUES ('261', '2018_06_25_165050_create_table_album_favorite', '80');
+INSERT INTO `fanyun_migrations` VALUES ('262', '2018_06_25_172841_edit_table_album_favorite', '80');
+INSERT INTO `fanyun_migrations` VALUES ('263', '2018_06_25_173504_edit_table_album_favorite_add', '80');
+INSERT INTO `fanyun_migrations` VALUES ('264', '2018_07_04_145020_add_sort_to_albumcat', '81');
+INSERT INTO `fanyun_migrations` VALUES ('265', '2018_07_04_152558_edit_mobile_default_to_albumproduct', '81');
+INSERT INTO `fanyun_migrations` VALUES ('266', '2018_07_04_153957_edit_mobile_default_to_albumagent', '81');
+INSERT INTO `fanyun_migrations` VALUES ('267', '2018_06_27_083832_create_album_product_attr_table', '82');
+INSERT INTO `fanyun_migrations` VALUES ('268', '2018_06_27_084015_create_album_order_table', '82');
+INSERT INTO `fanyun_migrations` VALUES ('269', '2018_06_27_093110_create_album_review_table', '82');
+INSERT INTO `fanyun_migrations` VALUES ('270', '2018_06_27_095257_create_album_parts_table', '82');
+INSERT INTO `fanyun_migrations` VALUES ('271', '2018_06_28_022313_create_album_progress_table', '82');
+INSERT INTO `fanyun_migrations` VALUES ('272', '2018_07_05_133808_creat_table_sw_agent_cost_price', '83');
+INSERT INTO `fanyun_migrations` VALUES ('273', '2018_07_05_152506_add_type_to_sw_agent_cost_price', '83');
+INSERT INTO `fanyun_migrations` VALUES ('274', '2018_07_07_111230_create_table_sw_agent_recharge', '83');
+INSERT INTO `fanyun_migrations` VALUES ('275', '2018_07_10_111857_add_role_to_user_info', '84');
+INSERT INTO `fanyun_migrations` VALUES ('276', '2018_07_10_150728_add_thumb_to_album_news', '84');
+INSERT INTO `fanyun_migrations` VALUES ('277', '2018_07_10_161248_add_furniture_ads_pic_to_album_manufacturer', '84');
+INSERT INTO `fanyun_migrations` VALUES ('278', '2018_07_16_163222_drop_album_information_table', '85');
+INSERT INTO `fanyun_migrations` VALUES ('279', '2018_07_16_165622_remove_addtime_from_album_comments_table', '85');
+INSERT INTO `fanyun_migrations` VALUES ('280', '2018_07_17_110554_add_viewed_to_album_news_table', '86');
+INSERT INTO `fanyun_migrations` VALUES ('281', '2018_07_17_171612_create_furniture_goods_table', '86');
+INSERT INTO `fanyun_migrations` VALUES ('282', '2018_07_17_171633_create_furniture_goods_category_table', '86');
+INSERT INTO `fanyun_migrations` VALUES ('283', '2018_07_20_153406_add_store_id_to_furniture_goods', '86');
+INSERT INTO `fanyun_migrations` VALUES ('284', '2018_07_20_153439_add_store_id_to_furniture_goods_category', '86');
+INSERT INTO `fanyun_migrations` VALUES ('285', '2018_07_21_111740_drop_address_from_user_info_table', '87');
+INSERT INTO `fanyun_migrations` VALUES ('286', '2018_07_24_101749_add_auto_release_to_app_info', '88');
+INSERT INTO `fanyun_migrations` VALUES ('287', '2018_07_25_174838_add_service_app_id_to_album_manufacturer', '89');
+INSERT INTO `fanyun_migrations` VALUES ('288', '2018_07_31_095631_add_role_to_album_user_table', '90');
+INSERT INTO `fanyun_migrations` VALUES ('289', '2018_08_02_151253_remove_color_from_album_product_attr', '91');
+INSERT INTO `fanyun_migrations` VALUES ('290', '2018_08_02_173635_add_store_id_to_album_progress', '92');
+INSERT INTO `fanyun_migrations` VALUES ('291', '2018_08_08_102711_add_expected_comment_to_album_order_table', '93');
+INSERT INTO `fanyun_migrations` VALUES ('292', '2018_08_08_172805_add_print_no_to_album_manufacturer', '94');
+INSERT INTO `fanyun_migrations` VALUES ('293', '2018_08_10_165350_create_furniture_formid_table', '95');
+INSERT INTO `fanyun_migrations` VALUES ('294', '2018_08_23_093700_add_goods_app_id_to_album_manufacturer', '96');
+INSERT INTO `fanyun_migrations` VALUES ('295', '2018_08_23_094148_add_goods_id_to_furnirute_goods', '96');
+INSERT INTO `fanyun_migrations` VALUES ('296', '2018_08_23_105151_add_goods_app_path_to_album_manufacturer', '97');
+INSERT INTO `fanyun_migrations` VALUES ('297', '2018_08_08_133515_add_verifier_id_to_album_table', '98');
+INSERT INTO `fanyun_migrations` VALUES ('298', '2018_08_28_165133_edit_clounm_product', '99');
+INSERT INTO `fanyun_migrations` VALUES ('299', '2018_08_31_155343_add_pic_url_active_to_album_nav', '99');
+INSERT INTO `fanyun_migrations` VALUES ('300', '2018_08_31_165226_add_clonum_to_albummanufacturers', '100');
+INSERT INTO `fanyun_migrations` VALUES ('301', '2018_09_07_154305_add_case_pics_to_sw_cases_info', '101');
+INSERT INTO `fanyun_migrations` VALUES ('302', '2018_09_28_142807_add_print_type_to_album_manufacturer', '102');
+INSERT INTO `fanyun_migrations` VALUES ('303', '2018_09_28_164306_drop_table_from_furniture', '103');
+INSERT INTO `fanyun_migrations` VALUES ('304', '2018_09_28_171958_truncate_admin_menus', '103');
+INSERT INTO `fanyun_migrations` VALUES ('305', '2018_10_29_110809_add_column_to_album_xyx_user', '104');
+INSERT INTO `fanyun_migrations` VALUES ('306', '2018_10_29_175006_add_column_to_album_user', '105');
+INSERT INTO `fanyun_migrations` VALUES ('307', '2018_11_09_145439_created_wactch_record', '106');
+INSERT INTO `fanyun_migrations` VALUES ('308', '2018_11_09_154453_add_column_to_wactch_record', '106');
+INSERT INTO `fanyun_migrations` VALUES ('309', '2018_11_21_162209_create_table_album_form_id', '107');
+INSERT INTO `fanyun_migrations` VALUES ('310', '2018_11_23_150146_add_column_to_album_agent', '108');
+INSERT INTO `fanyun_migrations` VALUES ('311', '2018_11_27_094259_create_table_agent_banner', '109');
+INSERT INTO `fanyun_migrations` VALUES ('312', '2018_12_06_145438_edit_column_model_to_album_user', '110');
+INSERT INTO `fanyun_migrations` VALUES ('313', '2018_12_20_094603_create_furniture_newgoods_info_table', '111');
+INSERT INTO `fanyun_migrations` VALUES ('314', '2018_12_20_094625_create_furniture_newgoods_booking_table', '111');
+INSERT INTO `fanyun_migrations` VALUES ('315', '2018_12_20_094647_create_furniture_newgoods_comment_table', '111');
+INSERT INTO `fanyun_migrations` VALUES ('316', '2018_12_20_171750_add_picture_to_furniture_newsgoods_comment', '112');
+INSERT INTO `fanyun_migrations` VALUES ('317', '2018_12_20_174352_add_response_to_furniture_newsgoods_comment', '113');
+INSERT INTO `fanyun_migrations` VALUES ('318', '2018_12_25_133836_add_column_price_to_album_product', '113');
+INSERT INTO `fanyun_migrations` VALUES ('319', '2019_01_19_152156_create_table_customer_details', '114');
+INSERT INTO `fanyun_migrations` VALUES ('320', '2019_01_19_161909_create_table_customer_cat_record', '114');
+INSERT INTO `fanyun_migrations` VALUES ('321', '2019_01_25_171744_add_unionid_to_user', '115');
+INSERT INTO `fanyun_migrations` VALUES ('322', '2019_01_28_161043_add_column_switch_to_manufacturer', '115');
+INSERT INTO `fanyun_migrations` VALUES ('323', '2019_01_29_172314_add_column_open_id_to_album_user', '116');
+INSERT INTO `fanyun_migrations` VALUES ('324', '2019_02_03_090637_add_column_to_customer_details', '117');
+INSERT INTO `fanyun_migrations` VALUES ('325', '2019_02_03_130930_add_column_to_album_agent', '118');
+INSERT INTO `fanyun_migrations` VALUES ('326', '2019_02_11_164554_add_column_to_album_manufacturer_get_focus', '119');
+INSERT INTO `fanyun_migrations` VALUES ('327', '2019_02_18_112723_create_table_album_statistical', '120');
+INSERT INTO `fanyun_migrations` VALUES ('328', '2019_02_20_104023_add_column_to_album_agent', '121');
+INSERT INTO `fanyun_migrations` VALUES ('329', '2019_03_04_132756_create_table_album_poster', '122');
+INSERT INTO `fanyun_migrations` VALUES ('330', '2019_03_05_184614_add_column_to_album_poster', '122');
+INSERT INTO `fanyun_migrations` VALUES ('331', '2019_03_06_095038_add_colunm__a_p_p_i_d_to_album_manufacturer', '122');
+INSERT INTO `fanyun_migrations` VALUES ('332', '2019_03_06_145033_add_g_open_id_to_album_user', '122');
+INSERT INTO `fanyun_migrations` VALUES ('333', '2019_03_11_133732_add_column_to_manufacturer', '123');
+INSERT INTO `fanyun_migrations` VALUES ('334', '2019_03_19_134538_add_banner_to_album_manufacturer', '124');
+INSERT INTO `fanyun_migrations` VALUES ('335', '2019_03_22_100451_add_column_logo_to_album_manufacturer', '125');
+INSERT INTO `fanyun_migrations` VALUES ('336', '2019_03_26_111630_add_column_thumb_to_album_product', '126');
+INSERT INTO `fanyun_migrations` VALUES ('337', '2019_03_28_161831_add_column_is_show_ma_price_to_album_agent', '127');
+INSERT INTO `fanyun_migrations` VALUES ('338', '2019_03_29_174712_add_column_ma_price_to_album_product', '128');
+INSERT INTO `fanyun_migrations` VALUES ('339', '2019_04_03_101526_add_column_set_price_point_to_album_agent', '129');
+INSERT INTO `fanyun_migrations` VALUES ('340', '2019_04_09_163006_add_is_root_to_admin_role', '130');
+INSERT INTO `fanyun_migrations` VALUES ('341', '2019_04_14_105335_add_address_info_to_album_user', '131');
+INSERT INTO `fanyun_migrations` VALUES ('342', '2019_04_14_141741_add_is_new_to_album_watch_record', '131');
+INSERT INTO `fanyun_migrations` VALUES ('343', '2019_04_15_104944_add_store_id_to_base_attachment', '131');
+INSERT INTO `fanyun_migrations` VALUES ('344', '2019_04_16_183629_add_column_cat_id_to_album_product_price', '131');
+INSERT INTO `fanyun_migrations` VALUES ('345', '2019_04_16_201403_add_st_column_to_album_agent', '131');
+INSERT INTO `fanyun_migrations` VALUES ('346', '2019_04_17_092129_add_column_share_to_album_agent', '131');
+INSERT INTO `fanyun_migrations` VALUES ('347', '2019_04_17_110528_change_customer_cat_record', '131');
+INSERT INTO `fanyun_migrations` VALUES ('348', '2019_04_18_151500_delete_level_in_album_cat', '132');
+INSERT INTO `fanyun_migrations` VALUES ('349', '2019_04_18_195425_add_interactive_to_album_agent', '133');
+INSERT INTO `fanyun_migrations` VALUES ('350', '2019_04_19_160637_add_store_id_to_classes', '134');
+INSERT INTO `fanyun_migrations` VALUES ('351', '2019_04_24_104213_add_template_id_to_album_manufacturer', '135');
+INSERT INTO `fanyun_migrations` VALUES ('352', '2019_04_26_105614_edit_agent_to_store_at_agent_banner', '136');
+INSERT INTO `fanyun_migrations` VALUES ('353', '2019_04_26_152722_add_upload_video_to_album_product', '136');
+INSERT INTO `fanyun_migrations` VALUES ('354', '2019_05_17_132117_add_is_boss_to_album_user', '137');
+INSERT INTO `fanyun_migrations` VALUES ('355', '2019_05_20_094445_add_column_banners_to_album_poster', '138');
+INSERT INTO `fanyun_migrations` VALUES ('356', '2019_05_29_163555_add_columns_video_download_to_album_poster', '138');
+INSERT INTO `fanyun_migrations` VALUES ('357', '2019_05_29_172519_add_columns_title_to_album_poster', '138');
+INSERT INTO `fanyun_migrations` VALUES ('358', '2019_05_30_132301_drop_column_in_album_poster', '138');
+INSERT INTO `fanyun_migrations` VALUES ('359', '2019_05_30_132708_add_column_share_to_album_manufacturer', '138');
+INSERT INTO `fanyun_migrations` VALUES ('360', '2019_05_30_141921_add_type_column_in_album_poster', '138');
+INSERT INTO `fanyun_migrations` VALUES ('361', '2019_05_30_153526_drop_banner_column_in_album_poster', '138');
+INSERT INTO `fanyun_migrations` VALUES ('362', '2019_05_30_155851_add_qrcode_to_album_manufacturer', '138');
+INSERT INTO `fanyun_migrations` VALUES ('363', '2019_05_30_200039_drop_column_album_banner', '138');
+INSERT INTO `fanyun_migrations` VALUES ('364', '2019_05_31_095826_add_column_to_album_mancufacturer', '139');
+INSERT INTO `fanyun_migrations` VALUES ('365', '2019_06_05_105903_change_column_album_manufacturer', '140');
+
+-- ----------------------------
+-- Table structure for fanyun_oauth_access_tokens
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_oauth_access_tokens`;
+CREATE TABLE `fanyun_oauth_access_tokens` (
+  `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
+  `user_id` int(11) DEFAULT NULL,
+  `client_id` int(11) NOT NULL,
+  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
+  `scopes` text COLLATE utf8mb4_unicode_ci,
+  `revoked` tinyint(1) NOT NULL,
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  `expires_at` datetime DEFAULT NULL,
+  PRIMARY KEY (`id`),
+  KEY `oauth_access_tokens_user_id_index` (`user_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+
+-- ----------------------------
+-- Records of fanyun_oauth_access_tokens
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_oauth_auth_codes
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_oauth_auth_codes`;
+CREATE TABLE `fanyun_oauth_auth_codes` (
+  `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
+  `user_id` int(11) NOT NULL,
+  `client_id` int(11) NOT NULL,
+  `scopes` text COLLATE utf8mb4_unicode_ci,
+  `revoked` tinyint(1) NOT NULL,
+  `expires_at` datetime DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+
+-- ----------------------------
+-- Records of fanyun_oauth_auth_codes
+-- ----------------------------
+
+-- ----------------------------
+-- Table structure for fanyun_oauth_clients
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_oauth_clients`;
+CREATE TABLE `fanyun_oauth_clients` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `user_id` int(11) DEFAULT NULL,
+  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
+  `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
+  `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL,
+  `personal_access_client` tinyint(1) NOT NULL,
+  `password_client` tinyint(1) NOT NULL,
+  `revoked` tinyint(1) NOT NULL,
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`),
+  KEY `oauth_clients_user_id_index` (`user_id`)
+) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+
+-- ----------------------------
+-- Records of fanyun_oauth_clients
+-- ----------------------------
+INSERT INTO `fanyun_oauth_clients` VALUES ('15', null, 'Laravel Personal Access Client', 'Px9JuoIVSNKUfHUQhsK4DycbLgvLpx5dcPgoBlRW', 'http://localhost', '1', '0', '0', '2020-02-14 14:36:58', '2020-02-14 14:36:58');
+INSERT INTO `fanyun_oauth_clients` VALUES ('16', null, 'Laravel Password Grant Client', 'U8zquZfslgkftNBnS73CVF7T569x5E30zoGfxhWQ', 'http://localhost', '0', '1', '0', '2020-02-14 14:36:58', '2020-02-14 14:36:58');
+
+-- ----------------------------
+-- Table structure for fanyun_oauth_personal_access_clients
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_oauth_personal_access_clients`;
+CREATE TABLE `fanyun_oauth_personal_access_clients` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `client_id` int(11) NOT NULL,
+  `created_at` timestamp NULL DEFAULT NULL,
+  `updated_at` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`),
+  KEY `oauth_personal_access_clients_client_id_index` (`client_id`)
+) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+
+-- ----------------------------
+-- Records of fanyun_oauth_personal_access_clients
+-- ----------------------------
+INSERT INTO `fanyun_oauth_personal_access_clients` VALUES ('8', '15', '2020-02-14 14:36:58', '2020-02-14 14:36:58');
+
+-- ----------------------------
+-- Table structure for fanyun_oauth_refresh_tokens
+-- ----------------------------
+DROP TABLE IF EXISTS `fanyun_oauth_refresh_tokens`;
+CREATE TABLE `fanyun_oauth_refresh_tokens` (
+  `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
+  `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
+  `revoked` tinyint(1) NOT NULL,
+  `expires_at` datetime DEFAULT NULL,
+  PRIMARY KEY (`id`),
+  KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+
+-- ----------------------------
+-- Records of fanyun_oauth_refresh_tokens
+-- ----------------------------
+
+");

+ 9 - 5
manifest.xml

xqd xqd
@@ -1,16 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns="http://9026.com/" versionCode="">
+<manifest xmlns="http://9026.com/" versionCode="0.6">
     <application setting="false">
         <name><![CDATA[在线画册]]></name>
-        <identifie><![CDATA[furnitureWe7]]></identifie>
-        <version><![CDATA[1.0]]></version>
+        <identifie><![CDATA[online_album]]></identifie>
+        <version><![CDATA[1.0.0]]></version>
         <type><![CDATA[business]]></type>
         <ability><![CDATA[在线画册]]></ability>
         <description><![CDATA[在线画册]]></description>
         <author><![CDATA[在线画册]]></author>
         <url><![CDATA[http://9026.com]]></url>
-  </application>
+    </application>
     <platform>
+        <subscribes>
+        </subscribes>
+        <rule embed="false" />
+        <card embed="false" />
         <supports>
             <item type="wxapp"/>
         </supports>
@@ -19,7 +23,7 @@
     </bindings>
     <permissions>
     </permissions>
-    <install><![CDATA[]]></install>
+    <install><![CDATA[install.php]]></install>
     <uninstall><![CDATA[]]></uninstall>
     <upgrade><![CDATA[]]></upgrade>
 </manifest>

+ 7 - 0
vendor/autoload.php

xqd
@@ -0,0 +1,7 @@
+<?php
+
+// autoload.php @generated by Composer
+
+require_once __DIR__ . '/composer/autoload_real.php';
+
+return ComposerAutoloaderInitc6dd7fb340b545d4fe9af80b20aaf9c6::getLoader();

+ 15 - 0
vendor/barryvdh/laravel-ide-helper/.editorconfig

xqd
@@ -0,0 +1,15 @@
+; This file is for unifying the coding style for different editors and IDEs.
+; More information at http://editorconfig.org
+
+root = true
+
+[*]
+charset = utf-8
+indent_size = 4
+indent_style = space
+end_of_line = lf
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[*.md]
+trim_trailing_whitespace = false

+ 1 - 0
vendor/barryvdh/laravel-ide-helper/.styleci.yml

xqd
@@ -0,0 +1 @@
+preset: psr2

+ 21 - 0
vendor/barryvdh/laravel-ide-helper/LICENSE.md

xqd
@@ -0,0 +1,21 @@
+# The MIT License (MIT)
+
+Copyright (c) Barry vd. Heuvel <barryvdh@gmail.com>
+
+> Permission is hereby granted, free of charge, to any person obtaining a copy
+> of this software and associated documentation files (the "Software"), to deal
+> in the Software without restriction, including without limitation the rights
+> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+> copies of the Software, and to permit persons to whom the Software is
+> furnished to do so, subject to the following conditions:
+>
+> The above copyright notice and this permission notice shall be included in
+> all copies or substantial portions of the Software.
+>
+> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+> THE SOFTWARE.

+ 57 - 0
vendor/barryvdh/laravel-ide-helper/composer.json

xqd
@@ -0,0 +1,57 @@
+{
+    "name": "barryvdh/laravel-ide-helper",
+    "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
+    "keywords": ["laravel", "autocomplete", "ide", "helper", "phpstorm", "netbeans", "sublime", "codeintel", "phpdoc"],
+    "license": "MIT",
+    "authors": [
+        {
+            "name": "Barry vd. Heuvel",
+            "email": "barryvdh@gmail.com"
+        }
+    ],
+    "require": {
+        "php": ">=7",
+        "illuminate/support": "^5.5,<5.8",
+        "illuminate/console": "^5.5,<5.8",
+        "illuminate/filesystem": "^5.5,<5.8",
+        "barryvdh/reflection-docblock": "^2.0.4",
+        "composer/composer": "^1.6"
+    },
+    "require-dev": {
+        "illuminate/config": "^5.1,<5.8",
+        "illuminate/view": "^5.1,<5.8",
+        "phpro/grumphp": "^0.14",
+        "phpunit/phpunit" : "4.*",
+        "scrutinizer/ocular": "~1.1",
+        "squizlabs/php_codesniffer": "^3",
+        "doctrine/dbal": "~2.3"
+    },
+    "suggest": {
+        "doctrine/dbal": "Load information from the database about models for phpdocs (~2.3)"
+    },
+    "autoload": {
+        "psr-4": {
+            "Barryvdh\\LaravelIdeHelper\\": "src"
+        }
+    },
+    "autoload-dev": {
+        "psr-4": {
+            "Barryvdh\\LaravelIdeHelper\\": "tests"
+        }
+    },
+    "scripts": {
+        "test": "phpunit",
+        "check-style": "phpcs -p --standard=PSR2 src/",
+        "fix-style": "phpcbf -p --standard=PSR2 src/"
+    },
+    "extra": {
+        "branch-alias": {
+            "dev-master": "2.5-dev"
+        },
+        "laravel": {
+            "providers": [
+                "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
+            ]
+        }
+    }
+}

+ 181 - 0
vendor/barryvdh/laravel-ide-helper/config/ide-helper.php

xqd
@@ -0,0 +1,181 @@
+<?php
+
+return array(
+
+    /*
+    |--------------------------------------------------------------------------
+    | Filename & Format
+    |--------------------------------------------------------------------------
+    |
+    | The default filename (without extension) and the format (php or json)
+    |
+    */
+
+    'filename'  => '_ide_helper',
+    'format'    => 'php',
+    
+    'meta_filename' => '.phpstorm.meta.php',
+
+    /*
+    |--------------------------------------------------------------------------
+    | Fluent helpers
+    |--------------------------------------------------------------------------
+    |
+    | Set to true to generate commonly used Fluent methods
+    |
+    */
+
+    'include_fluent' => false,
+
+    /*
+    |--------------------------------------------------------------------------
+    | Write Model Magic methods
+    |--------------------------------------------------------------------------
+    |
+    | Set to false to disable write magic methods of model
+    |
+    */
+
+    'write_model_magic_where' => true,
+
+    /*
+    |--------------------------------------------------------------------------
+    | Helper files to include
+    |--------------------------------------------------------------------------
+    |
+    | Include helper files. By default not included, but can be toggled with the
+    | -- helpers (-H) option. Extra helper files can be included.
+    |
+    */
+
+    'include_helpers' => false,
+
+    'helper_files' => array(
+        base_path().'/vendor/laravel/framework/src/Illuminate/Support/helpers.php',
+    ),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Model locations to include
+    |--------------------------------------------------------------------------
+    |
+    | Define in which directories the ide-helper:models command should look
+    | for models.
+    |
+    */
+
+    'model_locations' => array(
+        'app',
+    ),
+
+
+    /*
+    |--------------------------------------------------------------------------
+    | Extra classes
+    |--------------------------------------------------------------------------
+    |
+    | These implementations are not really extended, but called with magic functions
+    |
+    */
+
+    'extra' => array(
+        'Eloquent' => array('Illuminate\Database\Eloquent\Builder', 'Illuminate\Database\Query\Builder'),
+        'Session' => array('Illuminate\Session\Store'),
+    ),
+
+    'magic' => array(
+        'Log' => array(
+            'debug'     => 'Monolog\Logger::addDebug',
+            'info'      => 'Monolog\Logger::addInfo',
+            'notice'    => 'Monolog\Logger::addNotice',
+            'warning'   => 'Monolog\Logger::addWarning',
+            'error'     => 'Monolog\Logger::addError',
+            'critical'  => 'Monolog\Logger::addCritical',
+            'alert'     => 'Monolog\Logger::addAlert',
+            'emergency' => 'Monolog\Logger::addEmergency',
+        )
+    ),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Interface implementations
+    |--------------------------------------------------------------------------
+    |
+    | These interfaces will be replaced with the implementing class. Some interfaces
+    | are detected by the helpers, others can be listed below.
+    |
+    */
+
+    'interfaces' => array(
+
+    ),
+
+    /*
+    |--------------------------------------------------------------------------
+    | Support for custom DB types
+    |--------------------------------------------------------------------------
+    |
+    | This setting allow you to map any custom database type (that you may have
+    | created using CREATE TYPE statement or imported using database plugin
+    | / extension to a Doctrine type.
+    |
+    | Each key in this array is a name of the Doctrine2 DBAL Platform. Currently valid names are:
+    | 'postgresql', 'db2', 'drizzle', 'mysql', 'oracle', 'sqlanywhere', 'sqlite', 'mssql'
+    |
+    | This name is returned by getName() method of the specific Doctrine/DBAL/Platforms/AbstractPlatform descendant
+    |
+    | The value of the array is an array of type mappings. Key is the name of the custom type,
+    | (for example, "jsonb" from Postgres 9.4) and the value is the name of the corresponding Doctrine2 type (in
+    | our case it is 'json_array'. Doctrine types are listed here:
+    | http://doctrine-dbal.readthedocs.org/en/latest/reference/types.html
+    |
+    | So to support jsonb in your models when working with Postgres, just add the following entry to the array below:
+    |
+    | "postgresql" => array(
+    |       "jsonb" => "json_array",
+    |  ),
+    |
+    */
+    'custom_db_types' => array(
+
+    ),
+
+    /*
+     |--------------------------------------------------------------------------
+     | Support for camel cased models
+     |--------------------------------------------------------------------------
+     |
+     | There are some Laravel packages (such as Eloquence) that allow for accessing
+     | Eloquent model properties via camel case, instead of snake case.
+     |
+     | Enabling this option will support these packages by saving all model
+     | properties as camel case, instead of snake case.
+     |
+     | For example, normally you would see this:
+     |
+     |  * @property \Illuminate\Support\Carbon $created_at
+     |  * @property \Illuminate\Support\Carbon $updated_at
+     |
+     | With this enabled, the properties will be this:
+     |
+     |  * @property \Illuminate\Support\Carbon $createdAt
+     |  * @property \Illuminate\Support\Carbon $updatedAt
+     |
+     | Note, it is currently an all-or-nothing option.
+     |
+     */
+    'model_camel_case_properties' => false,
+
+    /*
+    |--------------------------------------------------------------------------
+    | Property Casts
+    |--------------------------------------------------------------------------
+    |
+    | Cast the given "real type" to the given "type".
+    |
+    */
+   'type_overrides' => array(
+        'integer' => 'int',
+        'boolean' => 'bool',
+   ),
+);

+ 15 - 0
vendor/barryvdh/laravel-ide-helper/grumphp.yml

xqd
@@ -0,0 +1,15 @@
+parameters:
+    git_dir: .
+    bin_dir: vendor/bin
+    tasks:
+        phpunit:
+            config_file: ~
+            testsuite: ~
+            group: []
+            always_execute: false
+        phpcs:
+            standard: PSR2
+            warning_severity: ~
+            ignore_patterns:
+              - tests/
+            triggered_by: [php]

+ 262 - 0
vendor/barryvdh/laravel-ide-helper/readme.md

xqd
@@ -0,0 +1,262 @@
+## Laravel 5 IDE Helper Generator
+
+[![Latest Version on Packagist][ico-version]][link-packagist]
+[![Software License][ico-license]](LICENSE.md)
+[![Build Status][ico-travis]][link-travis]
+[![Total Downloads][ico-downloads]][link-downloads]
+
+__For Laravel 4.x, check [version 1.11](https://github.com/barryvdh/laravel-ide-helper/tree/1.11)__
+
+### Complete phpDocs, directly from the source
+
+_Check out [this Laracasts video](https://laracasts.com/series/how-to-be-awesome-in-phpstorm/episodes/15) for a quick introduction/explanation!_
+
+ * [`php artisan ide-helper:generate` - phpDoc generation for Laravel Facades ](#automatic-phpdoc-generation-for-laravel-facades)
+ * [`php artisan ide-helper:models` - phpDocs for models](#automatic-phpdocs-for-models)
+ * [`php artisan ide-helper:meta` - PhpStorm Meta file](#phpstorm-meta-for-container-instances)
+
+This package generates a file that your IDE understands, so it can provide accurate autocompletion. Generation is done based on the files in your project, so they are always up-to-date.
+If you don't want to generate it, you can add a pre-generated file to the root folder of your Laravel project (but this isn't as up-to-date as self generated files).
+
+* Generated version for L5: https://gist.github.com/barryvdh/5227822
+* Generated version for Lumen: https://gist.github.com/barryvdh/be17164b0ad51f832f20
+* Generated Phpstorm Meta file: https://gist.github.com/barryvdh/bb6ffc5d11e0a75dba67
+
+Note: You do need CodeComplice for Sublime Text: https://github.com/spectacles/CodeComplice
+
+### Install
+
+Require this package with composer using the following command:
+
+```bash
+composer require barryvdh/laravel-ide-helper
+```
+
+After updating composer, add the service provider to the `providers` array in `config/app.php`
+
+```php
+Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class,
+```
+**Laravel 5.5** uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
+
+To install this package on only development systems, add the `--dev` flag to your composer command:
+
+```bash
+composer require --dev barryvdh/laravel-ide-helper
+```
+
+In Laravel, instead of adding the service provider in the `config/app.php` file, you can add the following code to your `app/Providers/AppServiceProvider.php` file, within the `register()` method:
+
+```php
+public function register()
+{
+    if ($this->app->environment() !== 'production') {
+        $this->app->register(\Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class);
+    }
+    // ...
+}
+```
+
+This will allow your application to load the Laravel IDE Helper on non-production enviroments.
+
+### Automatic phpDoc generation for Laravel Facades
+
+You can now re-generate the docs yourself (for future updates)
+
+```bash
+php artisan ide-helper:generate
+```
+
+Note: `bootstrap/compiled.php` has to be cleared first, so run `php artisan clear-compiled` before generating.
+
+You can configure your composer.json to do this after each commit:
+
+```js
+"scripts":{
+    "post-update-cmd": [
+        "Illuminate\\Foundation\\ComposerScripts::postUpdate",
+        "php artisan ide-helper:generate",
+        "php artisan ide-helper:meta"
+    ]
+},
+```
+
+You can also publish the config file to change implementations (ie. interface to specific class) or set defaults for `--helpers` or `--sublime`.
+
+```bash
+php artisan vendor:publish --provider="Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider" --tag=config
+```
+
+The generator tries to identify the real class, but if it cannot be found, you can define it in the config file.
+
+Some classes need a working database connection. If you do not have a default working connection, some facades will not be included.
+You can use an in-memory SQLite driver by adding the `-M` option.
+
+You can choose to include helper files. This is not enabled by default, but you can override it with the `--helpers (-H)` option.
+The `Illuminate/Support/helpers.php` is already set up, but you can add/remove your own files in the config file.
+
+### Automatic phpDocs for models
+
+> You need to require `doctrine/dbal: ~2.3` in your own composer.json to get database columns.
+
+
+```bash
+composer require doctrine/dbal
+```
+
+If you don't want to write your properties yourself, you can use the command `php artisan ide-helper:models` to generate
+phpDocs, based on table columns, relations and getters/setters. You can write the comments directly to your Model file, using the `--write (-W)` option. By default, you are asked to overwrite or write to a separate file (`_ide_helper_models.php`). You can force No with `--nowrite (-N)`.
+Please make sure to backup your models, before writing the info.
+It should keep the existing comments and only append new properties/methods. The existing phpdoc is replaced, or added if not found.
+With the `--reset (-R)` option, the existing phpdocs are ignored, and only the newly found columns/relations are saved as phpdocs.
+
+```bash
+php artisan ide-helper:models Post
+```
+
+```php
+/**
+ * An Eloquent Model: 'Post'
+ *
+ * @property integer $id
+ * @property integer $author_id
+ * @property string $title
+ * @property string $text
+ * @property \Illuminate\Support\Carbon $created_at
+ * @property \Illuminate\Support\Carbon $updated_at
+ * @property-read \User $author
+ * @property-read \Illuminate\Database\Eloquent\Collection|\Comment[] $comments
+ */
+```
+
+By default, models in `app/models` are scanned. The optional argument tells what models to use (also outside app/models).
+
+```bash
+php artisan ide-helper:models Post User
+```
+
+You can also scan a different directory, using the `--dir` option (relative from the base path):
+
+```bash
+php artisan ide-helper:models --dir="path/to/models" --dir="app/src/Model"
+```
+
+You can publish the config file (`php artisan vendor:publish`) and set the default directories.
+
+Models can be ignored using the `--ignore (-I)` option
+
+```bash
+php artisan ide-helper:models --ignore="Post,User"
+```
+
+Note: With namespaces, wrap your model name in double-quotes (`"`): `php artisan ide-helper:models "API\User"`, or escape the slashes (`Api\\User`)
+
+For properly recognition of `Model` methods (i.e. `paginate`, `findOrFail`) you should extend `\Eloquent` or add
+```php
+/** @mixin \Eloquent */
+```
+for your model class.
+
+### Automatic phpDocs generation for Laravel Fluent methods
+If you need phpDocs support for Fluent methods in migration, for example
+```php
+$table->string("somestring")->nullable()->index();
+```
+After publishing vendor, simply change the `include_fluent` line your `config/ide-helper.php` file into:
+```php
+'include_fluent' => true,
+```
+And then run `php artisan ide-helper:generate` , you will now see all of the Fluent methods are recognized by your IDE.
+
+
+## PhpStorm Meta for Container instances
+
+It's possible to generate a PhpStorm meta file to [add support for factory design pattern](https://confluence.jetbrains.com/display/PhpStorm/PhpStorm+Advanced+Metadata). For Laravel, this means we can make PhpStorm understand what kind of object we are resolving from the IoC Container. For example, `events` will return an `Illuminate\Events\Dispatcher` object, so with the meta file you can call `app('events')` and it will autocomplete the Dispatcher methods.
+
+``` bash
+php artisan ide-helper:meta
+```
+
+```php
+app('events')->fire();
+\App::make('events')->fire();
+
+/** @var \Illuminate\Foundation\Application $app */
+$app->make('events')->fire();
+
+// When the key is not found, it uses the argument as class name
+app('App\SomeClass');
+```
+
+Pre-generated example: https://gist.github.com/barryvdh/bb6ffc5d11e0a75dba67
+
+> Note: You might need to restart PhpStorm and make sure `.phpstorm.meta.php` is indexed.
+> Note: When you receive a FatalException about a class that is not found, check your config (for example, remove S3 as cloud driver when you don't have S3 configured. Remove Redis ServiceProvider when you don't use it).
+
+## Lumen Install
+
+This package is focused on Laravel development, but it can also be used in Lumen with some workarounds. Because Lumen works a little different, as it is like a barebone version of Laravel and the main configuration parameters are instead located in `bootstrap/app.php`, some alterations must be made.
+
+#### Enabling Facades
+
+While Laravel IDE Helper can generate automatically default Facades for code hinting, Lumen doesn't come with Facades activated. If you plan in using them, you must enable them under the `Create The Application` section, uncommenting this line:
+
+```php
+// $app->withFacades();
+```
+
+From there, you should be able to use the `create_alias()` function to add additional Facades into your application.
+
+#### Adding the Service Provider
+
+You can install Laravel IDE Helper in `app/Providers/AppServiceProvider.php`, and uncommenting this line that registers the App Service Providers so it can properly load.
+
+```php
+// $app->register(App\Providers\AppServiceProvider::class);
+```
+
+If you are not using that line, that is usually handy to manage gracefully multiple Laravel/Lumen installations, you will have to add this line of code under the `Register Service Providers` section of your `bootstrap/app.php`.
+
+```php
+if ($app->environment() !== 'production') {
+    $app->register(\Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class);
+}
+```
+
+After that, Laravel IDE Helper should work correctly. During the generation process, the script may throw exceptions saying that some Class(s) doesn't exist or there are some undefined indexes. This is normal, as Lumen has some default packages stripped away, like Cookies, Storage and Session. If you plan to add these packages, you will have to add them manually and create additional Facades if needed.
+
+#### Adding Additional Facades
+
+Currently Lumen IDE Helper doesn't take into account additional Facades created under `bootstrap/app.php` using `create_alias()`, so you need to create a `config/app.php` file and add your custom aliases under an `aliases` array again, like so:
+
+```php
+return [
+    'aliases' => [
+        'CustomAliasOne' => Example\Support\Facades\CustomAliasOne::class,
+        'CustomAliasTwo' => Example\Support\Facades\CustomAliasTwo::class,
+        //...
+    ]
+];
+```
+
+After you run ```php artisan ide-helper:generate```, it's recommended (but not mandatory) to rename `config/app.php` to something else until you have to re-generate the docs or after passing to production enviroment. Lumen 5.1+ will read this file for configuration parameters if it is present, and may overlap some configurations if it is completely populated.
+
+### License
+
+The Laravel IDE Helper Generator is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)
+
+
+[ico-version]: https://img.shields.io/packagist/v/barryvdh/laravel-ide-helper.svg?style=flat-square
+[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
+[ico-travis]: https://img.shields.io/travis/barryvdh/laravel-ide-helper/master.svg?style=flat-square
+[ico-scrutinizer]: https://img.shields.io/scrutinizer/coverage/g/barryvdh/laravel-ide-helper.svg?style=flat-square
+[ico-code-quality]: https://img.shields.io/scrutinizer/g/barryvdh/laravel-ide-helper.svg?style=flat-square
+[ico-downloads]: https://img.shields.io/packagist/dt/barryvdh/laravel-ide-helper.svg?style=flat-square
+
+[link-packagist]: https://packagist.org/packages/barryvdh/laravel-ide-helper
+[link-travis]: https://travis-ci.org/barryvdh/laravel-ide-helper
+[link-scrutinizer]: https://scrutinizer-ci.com/g/barryvdh/laravel-ide-helper/code-structure
+[link-code-quality]: https://scrutinizer-ci.com/g/barryvdh/laravel-ide-helper
+[link-downloads]: https://packagist.org/packages/barryvdh/laravel-ide-helper
+[link-author]: https://github.com/barryvdh
+[link-contributors]: ../../contributors

+ 93 - 0
vendor/barryvdh/laravel-ide-helper/resources/views/helper.php

xqd
@@ -0,0 +1,93 @@
+<?= '<?php' ?>
+
+// @formatter:off
+
+/**
+ * A helper file for Laravel 5, to provide autocomplete information to your IDE
+ * Generated for Laravel <?= $version ?> on <?= date("Y-m-d H:i:s") ?>.
+ *
+ * This file should not be included in your code, only analyzed by your IDE!
+ *
+ * @author Barry vd. Heuvel <barryvdh@gmail.com>
+ * @see https://github.com/barryvdh/laravel-ide-helper
+ */
+
+<?php foreach($namespaces_by_extends_ns as $namespace => $aliases): ?>
+<?php if ($namespace == '\Illuminate\Database\Eloquent'): continue; endif; ?>
+namespace <?= $namespace == '__root' ? '' : trim($namespace, '\\') ?> { 
+<?php foreach($aliases as $alias): ?>
+
+    <?= trim($alias->getDocComment('    ')) ?> 
+    <?= $alias->getClassType() ?> <?= $alias->getExtendsClass() ?> {
+        <?php foreach($alias->getMethods() as $method): ?>
+
+        <?= trim($method->getDocComment('        ')) ?> 
+        public static function <?= $method->getName() ?>(<?= $method->getParamsWithDefault() ?>)
+        {<?php if($method->getDeclaringClass() !== $method->getRoot()): ?>
+
+            //Method inherited from <?= $method->getDeclaringClass() ?>
+            <?php endif; ?>
+
+            <?= $method->shouldReturn() ? 'return ': '' ?><?= $method->getRoot() ?>::<?= $method->getName() ?>(<?= $method->getParams() ?>);
+        }
+        <?php endforeach; ?> 
+    }
+<?php endforeach; ?> 
+}
+
+<?php endforeach; ?>
+
+<?php foreach($namespaces_by_alias_ns as $namespace => $aliases): ?>
+namespace <?= $namespace == '__root' ? '' : trim($namespace, '\\') ?> { 
+<?php foreach($aliases as $alias): ?>
+
+    <?= $alias->getClassType() ?> <?= $alias->getShortName() ?> extends <?= $alias->getExtends() ?> {<?php if ($alias->getExtendsNamespace() == '\Illuminate\Database\Eloquent'): ?>
+        <?php foreach($alias->getMethods() as $method): ?> 
+            <?= trim($method->getDocComment('            ')) ?> 
+            public static function <?= $method->getName() ?>(<?= $method->getParamsWithDefault() ?>)
+            {<?php if($method->getDeclaringClass() !== $method->getRoot()): ?>
+    
+                //Method inherited from <?= $method->getDeclaringClass() ?>
+                <?php endif; ?>
+    
+                <?= $method->shouldReturn() ? 'return ': '' ?><?= $method->getRoot() ?>::<?= $method->getName() ?>(<?= $method->getParams() ?>);
+            }
+        <?php endforeach; ?>
+<?php endif; ?>}
+<?php endforeach; ?> 
+}
+
+<?php endforeach; ?>
+
+<?php if($helpers): ?>
+namespace {
+<?= $helpers ?> 
+}
+<?php endif; ?>
+
+<?php if($include_fluent): ?>
+namespace Illuminate\Support {
+    /**
+     * Methods commonly used in migrations
+     *
+     * @method Fluent after(string $column) Add the after modifier
+     * @method Fluent charset(string $charset) Add the character set modifier
+     * @method Fluent collation(string $collation) Add the collation modifier
+     * @method Fluent comment(string $comment) Add comment
+     * @method Fluent default($value) Add the default modifier
+     * @method Fluent first() Select first row
+     * @method Fluent index(string $name = null) Add the in dex clause
+     * @method Fluent on(string $table) `on` of a foreign key
+     * @method Fluent onDelete(string $action) `on delete` of a foreign key
+     * @method Fluent onUpdate(string $action) `on update` of a foreign key
+     * @method Fluent primary() Add the primary key modifier
+     * @method Fluent references(string $column) `references` of a foreign key
+     * @method Fluent nullable(bool $value = true) Add the nullable modifier
+     * @method Fluent unique(string $name = null) Add unique index clause
+     * @method Fluent unsigned() Add the unsigned modifier
+     * @method Fluent useCurrent() Add the default timestamp value
+     * @method Fluent change() Add the change modifier
+     */
+    class Fluent {}
+}
+<?php endif ?>

+ 53 - 0
vendor/barryvdh/laravel-ide-helper/resources/views/meta.php

xqd
@@ -0,0 +1,53 @@
+<?= '<?php' ?>
+
+// @formatter:off
+
+namespace PHPSTORM_META {
+
+   /**
+    * PhpStorm Meta file, to provide autocomplete information for PhpStorm
+    * Generated on <?= date("Y-m-d H:i:s") ?>.
+    *
+    * @author Barry vd. Heuvel <barryvdh@gmail.com>
+    * @see https://github.com/barryvdh/laravel-ide-helper
+    */
+<?php foreach ($methods as $method): ?>
+    override(<?= $method ?>, map([
+        '' => '@',
+<?php foreach($bindings as $abstract => $class): ?>
+        '<?= $abstract ?>' => \<?= $class ?>::class,
+<?php endforeach; ?>
+    ]));
+<?php endforeach; ?>
+
+    override(\Illuminate\Support\Arr::add(0), type(0));
+    override(\Illuminate\Support\Arr::except(0), type(0));
+    override(\Illuminate\Support\Arr::first(0), elementType(0));
+    override(\Illuminate\Support\Arr::last(0), elementType(0));
+    override(\Illuminate\Support\Arr::get(0), elementType(0));
+    override(\Illuminate\Support\Arr::only(0), type(0));
+    override(\Illuminate\Support\Arr::prepend(0), type(0));
+    override(\Illuminate\Support\Arr::pull(0), elementType(0));
+    override(\Illuminate\Support\Arr::set(0), type(0));
+    override(\Illuminate\Support\Arr::shuffle(0), type(0));
+    override(\Illuminate\Support\Arr::sort(0), type(0));
+    override(\Illuminate\Support\Arr::sortRecursive(0), type(0));
+    override(\Illuminate\Support\Arr::where(0), type(0));
+    override(\array_add(0), type(0));
+    override(\array_except(0), type(0));
+    override(\array_first(0), elementType(0));
+    override(\array_last(0), elementType(0));
+    override(\array_get(0), elementType(0));
+    override(\array_only(0), type(0));
+    override(\array_prepend(0), type(0));
+    override(\array_pull(0), elementType(0));
+    override(\array_set(0), type(0));
+    override(\array_sort(0), type(0));
+    override(\array_sort_recursive(0), type(0));
+    override(\array_where(0), type(0));
+    override(\head(0), elementType(0));
+    override(\last(0), elementType(0));
+    override(\with(0), type(0));
+    override(\tap(0), type(0));
+
+}

+ 414 - 0
vendor/barryvdh/laravel-ide-helper/src/Alias.php

xqd
@@ -0,0 +1,414 @@
+<?php
+/**
+ * Laravel IDE Helper Generator
+ *
+ * @author    Barry vd. Heuvel <barryvdh@gmail.com>
+ * @copyright 2014 Barry vd. Heuvel / Fruitcake Studio (http://www.fruitcakestudio.nl)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      https://github.com/barryvdh/laravel-ide-helper
+ */
+
+namespace Barryvdh\LaravelIdeHelper;
+
+use Barryvdh\Reflection\DocBlock;
+use Barryvdh\Reflection\DocBlock\Context;
+use Barryvdh\Reflection\DocBlock\Serializer as DocBlockSerializer;
+use ReflectionClass;
+
+class Alias
+{
+    protected $alias;
+    protected $facade;
+    protected $extends = null;
+    protected $extendsClass = null;
+    protected $extendsNamespace = null;
+    protected $classType = 'class';
+    protected $short;
+    protected $namespace = '__root';
+    protected $root = null;
+    protected $classes = array();
+    protected $methods = array();
+    protected $usedMethods = array();
+    protected $valid = false;
+    protected $magicMethods = array();
+    protected $interfaces = array();
+    protected $phpdoc = null;
+
+    /**
+     * @param string $alias
+     * @param string $facade
+     * @param array $magicMethods
+     * @param array $interfaces
+     */
+    public function __construct($alias, $facade, $magicMethods = array(), $interfaces = array())
+    {
+        $this->alias = $alias;
+        $this->magicMethods = $magicMethods;
+        $this->interfaces = $interfaces;
+
+        // Make the class absolute
+        $facade = '\\' . ltrim($facade, '\\');
+        $this->facade = $facade;
+
+        $this->detectRoot();
+
+        if ((!$this->isTrait() && $this->root)) {
+            $this->valid = true;
+        } else {
+            return;
+        }
+
+        $this->addClass($this->root);
+        $this->detectFake();
+        $this->detectNamespace();
+        $this->detectClassType();
+        $this->detectExtendsNamespace();
+
+        if (!empty($this->namespace)) {
+            //Create a DocBlock and serializer instance
+            $this->phpdoc = new DocBlock(new ReflectionClass($alias), new Context($this->namespace));
+        }
+
+
+        if ($facade === '\Illuminate\Database\Eloquent\Model') {
+            $this->usedMethods = array('decrement', 'increment');
+        }
+    }
+
+    /**
+     * Add one or more classes to analyze
+     *
+     * @param array|string $classes
+     */
+    public function addClass($classes)
+    {
+        $classes = (array)$classes;
+        foreach ($classes as $class) {
+            if (class_exists($class) || interface_exists($class)) {
+                $this->classes[] = $class;
+            } else {
+                echo "Class not exists: $class\r\n";
+            }
+        }
+    }
+
+    /**
+     * Check if this class is valid to process.
+     * @return bool
+     */
+    public function isValid()
+    {
+        return $this->valid;
+    }
+
+    /**
+     * Get the classtype, 'interface' or 'class'
+     *
+     * @return string
+     */
+    public function getClasstype()
+    {
+        return $this->classType;
+    }
+
+    /**
+     * Get the class which this alias extends
+     *
+     * @return null|string
+     */
+    public function getExtends()
+    {
+        return $this->extends;
+    }
+
+    /**
+     * Get the class short name which this alias extends
+     *
+     * @return null|string
+     */
+    public function getExtendsClass()
+    {
+        return $this->extendsClass;
+    }
+
+    /**
+     * Get the namespace of the class which this alias extends
+     *
+     * @return null|string
+     */
+    public function getExtendsNamespace()
+    {
+        return $this->extendsNamespace;
+    }
+
+    /**
+     * Get the Alias by which this class is called
+     *
+     * @return string
+     */
+    public function getAlias()
+    {
+        return $this->alias;
+    }
+
+    /**
+     * Return the short name (without namespace)
+     */
+    public function getShortName()
+    {
+        return $this->short;
+    }
+    /**
+     * Get the namespace from the alias
+     *
+     * @return string
+     */
+    public function getNamespace()
+    {
+        return $this->namespace;
+    }
+
+    /**
+     * Get the methods found by this Alias
+     *
+     * @return array
+     */
+    public function getMethods()
+    {
+        $this->addMagicMethods();
+        $this->detectMethods();
+        return $this->methods;
+    }
+
+    /**
+     * Detect class returned by ::fake()
+     */
+    protected function detectFake()
+    {
+        $facade = $this->facade;
+        
+        if (!method_exists($facade, 'fake')) {
+            return;
+        }
+
+        $real = $facade::getFacadeRoot();
+        
+        try {
+            $facade::fake();
+            $fake = $facade::getFacadeRoot();
+            if ($fake !== $real) {
+                $this->addClass(get_class($fake));
+            }
+        } finally {
+            $facade::swap($real);
+        }
+    }
+
+    /**
+     * Detect the namespace
+     */
+    protected function detectNamespace()
+    {
+        if (strpos($this->alias, '\\')) {
+            $nsParts = explode('\\', $this->alias);
+            $this->short = array_pop($nsParts);
+            $this->namespace = implode('\\', $nsParts);
+        } else {
+            $this->short = $this->alias;
+        }
+    }
+
+    /**
+     * Detect the extends namespace
+     */
+    protected function detectExtendsNamespace()
+    {
+        if (strpos($this->extends, '\\') !== false) {
+            $nsParts = explode('\\', $this->extends);
+            $this->extendsClass = array_pop($nsParts);
+            $this->extendsNamespace = implode('\\', $nsParts);
+        }
+    }
+
+    /**
+     * Detect the class type
+     */
+    protected function detectClassType()
+    {
+        //Some classes extend the facade
+        if (interface_exists($this->facade)) {
+            $this->classType = 'interface';
+            $this->extends = $this->facade;
+        } else {
+            $this->classType = 'class';
+            if (class_exists($this->facade)) {
+                $this->extends = $this->facade;
+            }
+        }
+    }
+
+    /**
+     * Get the real root of a facade
+     *
+     * @return bool|string
+     */
+    protected function detectRoot()
+    {
+        $facade = $this->facade;
+
+        try {
+            //If possible, get the facade root
+            if (method_exists($facade, 'getFacadeRoot')) {
+                $root = get_class($facade::getFacadeRoot());
+            } else {
+                $root = $facade;
+            }
+
+            //If it doesn't exist, skip it
+            if (!class_exists($root) && !interface_exists($root)) {
+                return;
+            }
+
+            $this->root = $root;
+
+            //When the database connection is not set, some classes will be skipped
+        } catch (\PDOException $e) {
+            $this->error(
+                "PDOException: " . $e->getMessage() .
+                "\nPlease configure your database connection correctly, or use the sqlite memory driver (-M)." .
+                " Skipping $facade."
+            );
+        } catch (\Exception $e) {
+            $this->error("Exception: " . $e->getMessage() . "\nSkipping $facade.");
+        }
+    }
+
+    /**
+     * Detect if this class is a trait or not.
+     *
+     * @return bool
+     */
+    protected function isTrait()
+    {
+        // Check if the facade is not a Trait
+        if (function_exists('trait_exists') && trait_exists($this->facade)) {
+            return true;
+        }
+        return false;
+    }
+
+    /**
+     * Add magic methods, as defined in the configuration files
+     */
+    protected function addMagicMethods()
+    {
+        foreach ($this->magicMethods as $magic => $real) {
+            list($className, $name) = explode('::', $real);
+            if (!class_exists($className) && !interface_exists($className)) {
+                continue;
+            }
+            $method = new \ReflectionMethod($className, $name);
+            $class = new \ReflectionClass($className);
+
+            if (!in_array($method->name, $this->usedMethods)) {
+                if ($class !== $this->root) {
+                    $this->methods[] = new Method($method, $this->alias, $class, $magic, $this->interfaces);
+                }
+                $this->usedMethods[] = $magic;
+            }
+        }
+    }
+
+    /**
+     * Get the methods for one or multiple classes.
+     *
+     * @return string
+     */
+    protected function detectMethods()
+    {
+
+        foreach ($this->classes as $class) {
+            $reflection = new \ReflectionClass($class);
+
+            $methods = $reflection->getMethods(\ReflectionMethod::IS_PUBLIC);
+            if ($methods) {
+                foreach ($methods as $method) {
+                    if (!in_array($method->name, $this->usedMethods)) {
+                        // Only add the methods to the output when the root is not the same as the class.
+                        // And don't add the __*() methods
+                        if ($this->extends !== $class && substr($method->name, 0, 2) !== '__') {
+                            $this->methods[] = new Method(
+                                $method,
+                                $this->alias,
+                                $reflection,
+                                $method->name,
+                                $this->interfaces
+                            );
+                        }
+                        $this->usedMethods[] = $method->name;
+                    }
+                }
+            }
+
+            // Check if the class is macroable
+            $traits = collect($reflection->getTraitNames());
+            if ($traits->contains('Illuminate\Support\Traits\Macroable')) {
+                $properties = $reflection->getStaticProperties();
+                $macros = isset($properties['macros']) ? $properties['macros'] : [];
+                foreach ($macros as $macro_name => $macro_func) {
+                    // Add macros
+                    $this->methods[] = new Macro(
+                        $this->getMacroFunction($macro_func),
+                        $this->alias,
+                        $reflection,
+                        $macro_name,
+                        $this->interfaces
+                    );
+                }
+            }
+        }
+    }
+
+    /**
+     * @param $macro_func
+     *
+     * @return \ReflectionFunctionAbstract
+     * @throws \ReflectionException
+     */
+    protected function getMacroFunction($macro_func)
+    {
+        if (is_array($macro_func) && is_callable($macro_func)) {
+            return new \ReflectionMethod($macro_func[0], $macro_func[1]);
+        }
+
+        return new \ReflectionFunction($macro_func);
+    }
+
+    /*
+     * Get the docblock for this alias
+     *
+     * @param string $prefix
+     * @return mixed
+     */
+    public function getDocComment($prefix = "\t\t")
+    {
+        $serializer = new DocBlockSerializer(1, $prefix);
+
+        if ($this->phpdoc) {
+            return $serializer->getDocComment($this->phpdoc);
+        }
+        
+        return '';
+    }
+
+    /**
+     * Output an error.
+     *
+     * @param  string  $string
+     * @return void
+     */
+    protected function error($string)
+    {
+        echo $string . "\r\n";
+    }
+}

+ 61 - 0
vendor/barryvdh/laravel-ide-helper/src/Console/EloquentCommand.php

xqd
@@ -0,0 +1,61 @@
+<?php
+/**
+ * Laravel IDE Helper Generator - Eloquent Model Mixin
+ *
+ * @author    Charles A. Peterson <artistan@gmail.com>
+ * @copyright 2017 Charles A. Peterson / Fruitcake Studio (http://www.fruitcakestudio.nl)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      https://github.com/barryvdh/laravel-ide-helper
+ */
+
+namespace Barryvdh\LaravelIdeHelper\Console;
+
+use Barryvdh\LaravelIdeHelper\Eloquent;
+use Illuminate\Console\Command;
+use Illuminate\Filesystem\Filesystem;
+
+/**
+ * A command to add \Eloquent mixin to Eloquent\Model
+ *
+ * @author Charles A. Peterson <artistan@gmail.com>
+ */
+class EloquentCommand extends Command
+{
+    /**
+     * The console command name.
+     *
+     * @var string
+     */
+    protected $name = 'ide-helper:eloquent';
+
+    /**
+     * @var Filesystem $files
+     */
+    protected $files;
+
+    /**
+     * The console command description.
+     *
+     * @var string
+     */
+    protected $description = 'Add \Eloquent helper to \Eloquent\Model';
+
+    /**
+     * @param Filesystem $files
+     */
+    public function __construct(Filesystem $files)
+    {
+        parent::__construct();
+        $this->files = $files;
+    }
+
+    /**
+     * Execute the console command.
+     *
+     * @return void
+     */
+    public function handle()
+    {
+        Eloquent::writeEloquentModelHelper($this, $this->files);
+    }
+}

+ 169 - 0
vendor/barryvdh/laravel-ide-helper/src/Console/GeneratorCommand.php

xqd
@@ -0,0 +1,169 @@
+<?php
+/**
+ * Laravel IDE Helper Generator
+ *
+ * @author    Barry vd. Heuvel <barryvdh@gmail.com>
+ * @copyright 2014 Barry vd. Heuvel / Fruitcake Studio (http://www.fruitcakestudio.nl)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      https://github.com/barryvdh/laravel-ide-helper
+ */
+
+namespace Barryvdh\LaravelIdeHelper\Console;
+
+use Barryvdh\LaravelIdeHelper\Eloquent;
+use Barryvdh\LaravelIdeHelper\Generator;
+use Illuminate\Console\Command;
+use Illuminate\Filesystem\Filesystem;
+use Symfony\Component\Console\Input\InputOption;
+use Symfony\Component\Console\Input\InputArgument;
+
+/**
+ * A command to generate autocomplete information for your IDE
+ *
+ * @author Barry vd. Heuvel <barryvdh@gmail.com>
+ */
+class GeneratorCommand extends Command
+{
+
+    /**
+     * The console command name.
+     *
+     * @var string
+     */
+    protected $name = 'ide-helper:generate';
+
+    /**
+     * The console command description.
+     *
+     * @var string
+     */
+    protected $description = 'Generate a new IDE Helper file.';
+
+    /** @var \Illuminate\Config\Repository */
+    protected $config;
+
+    /** @var \Illuminate\Filesystem\Filesystem */
+    protected $files;
+
+    /** @var \Illuminate\View\Factory */
+    protected $view;
+
+    protected $onlyExtend;
+
+
+    /**
+     *
+     * @param \Illuminate\Config\Repository $config
+     * @param \Illuminate\Filesystem\Filesystem $files
+     * @param \Illuminate\View\Factory $view
+     */
+    public function __construct(
+        /*ConfigRepository */ $config,
+        Filesystem $files,
+        /* Illuminate\View\Factory */
+        $view
+    ) {
+        $this->config = $config;
+        $this->files = $files;
+        $this->view = $view;
+        parent::__construct();
+    }
+
+    /**
+     * Execute the console command.
+     *
+     * @return void
+     */
+    public function handle()
+    {
+        if (file_exists(base_path() . '/vendor/compiled.php') ||
+            file_exists(base_path() . '/bootstrap/cache/compiled.php') ||
+            file_exists(base_path() . '/storage/framework/compiled.php')) {
+            $this->error(
+                'Error generating IDE Helper: first delete your compiled file (php artisan clear-compiled)'
+            );
+        } else {
+            $filename = $this->argument('filename');
+            $format = $this->option('format');
+
+            // Strip the php extension
+            if (substr($filename, -4, 4) == '.php') {
+                $filename = substr($filename, 0, -4);
+            }
+
+            $filename .= '.' . $format;
+
+            if ($this->option('memory')) {
+                $this->useMemoryDriver();
+            }
+
+
+            $helpers = '';
+            if ($this->option('helpers') || ($this->config->get('ide-helper.include_helpers'))) {
+                foreach ($this->config->get('ide-helper.helper_files', array()) as $helper) {
+                    if (file_exists($helper)) {
+                        $helpers .= str_replace(array('<?php', '?>'), '', $this->files->get($helper));
+                    }
+                }
+            } else {
+                $helpers = '';
+            }
+
+            $generator = new Generator($this->config, $this->view, $this->getOutput(), $helpers);
+            $content = $generator->generate($format);
+            $written = $this->files->put($filename, $content);
+
+            if ($written !== false) {
+                $this->info("A new helper file was written to $filename");
+            } else {
+                $this->error("The helper file could not be created at $filename");
+            }
+        }
+    }
+
+    protected function useMemoryDriver()
+    {
+        //Use a sqlite database in memory, to avoid connection errors on Database facades
+        $this->config->set(
+            'database.connections.sqlite',
+            array(
+                'driver' => 'sqlite',
+                'database' => ':memory:',
+            )
+        );
+        $this->config->set('database.default', 'sqlite');
+    }
+
+    /**
+     * Get the console command arguments.
+     *
+     * @return array
+     */
+    protected function getArguments()
+    {
+        $filename = $this->config->get('ide-helper.filename');
+
+        return array(
+            array(
+                'filename', InputArgument::OPTIONAL, 'The path to the helper file', $filename
+            ),
+        );
+    }
+
+    /**
+     * Get the console command options.
+     *
+     * @return array
+     */
+    protected function getOptions()
+    {
+        $format = $this->config->get('ide-helper.format');
+
+        return array(
+            array('format', "F", InputOption::VALUE_OPTIONAL, 'The format for the IDE Helper', $format),
+            array('helpers', "H", InputOption::VALUE_NONE, 'Include the helper files'),
+            array('memory', "M", InputOption::VALUE_NONE, 'Use sqlite memory driver'),
+            array('sublime', "S", InputOption::VALUE_NONE, 'DEPRECATED: Use different style for SublimeText CodeIntel'),
+        );
+    }
+}

+ 155 - 0
vendor/barryvdh/laravel-ide-helper/src/Console/MetaCommand.php

xqd
@@ -0,0 +1,155 @@
+<?php
+/**
+ * Laravel IDE Helper Generator
+ *
+ * @author    Barry vd. Heuvel <barryvdh@gmail.com>
+ * @copyright 2015 Barry vd. Heuvel / Fruitcake Studio (http://www.fruitcakestudio.nl)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      https://github.com/barryvdh/laravel-ide-helper
+ */
+
+namespace Barryvdh\LaravelIdeHelper\Console;
+
+use Illuminate\Console\Command;
+use Symfony\Component\Console\Input\InputOption;
+use Symfony\Component\Console\Output\OutputInterface;
+
+/**
+ * A command to generate phpstorm meta data
+ *
+ * @author Barry vd. Heuvel <barryvdh@gmail.com>
+ */
+class MetaCommand extends Command
+{
+
+    /**
+     * The console command name.
+     *
+     * @var string
+     */
+    protected $name = 'ide-helper:meta';
+
+    /**
+     * The console command description.
+     *
+     * @var string
+     */
+    protected $description = 'Generate metadata for PhpStorm';
+
+    /** @var \Illuminate\Contracts\Filesystem\Filesystem */
+    protected $files;
+
+    /** @var \Illuminate\Contracts\View\Factory */
+    protected $view;
+
+    /** @var \Illuminate\Contracts\Config */
+    protected $config;
+
+    protected $methods = [
+      'new \Illuminate\Contracts\Container\Container',
+      '\Illuminate\Contracts\Container\Container::make(0)',
+      '\Illuminate\Contracts\Container\Container::makeWith(0)',
+      '\App::make(0)',
+      '\App::makeWith(0)',
+      '\app(0)',
+      '\resolve(0)',
+    ];
+
+    /**
+     *
+     * @param \Illuminate\Contracts\Filesystem\Filesystem $files
+     * @param \Illuminate\Contracts\View\Factory $view
+     * @param \Illuminate\Contracts\Config $config
+     */
+    public function __construct($files, $view, $config)
+    {
+        $this->files = $files;
+        $this->view = $view;
+        $this->config = $config;
+        parent::__construct();
+    }
+
+    /**
+     * Execute the console command.
+     *
+     * @return void
+     */
+    public function handle()
+    {
+        $this->registerClassAutoloadExceptions();
+
+        $bindings = array();
+        foreach ($this->getAbstracts() as $abstract) {
+            // Validator and seeder cause problems
+            if (in_array($abstract, ['validator', 'seeder'])) {
+                continue;
+            }
+
+            try {
+                $concrete = $this->laravel->make($abstract);
+                if (is_object($concrete)) {
+                    $bindings[$abstract] = get_class($concrete);
+                }
+            } catch (\Exception $e) {
+                if ($this->output->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) {
+                    $this->comment("Cannot make '$abstract': ".$e->getMessage());
+                }
+            }
+        }
+
+        $content = $this->view->make('meta', [
+          'bindings' => $bindings,
+          'methods' => $this->methods,
+        ])->render();
+
+        $filename = $this->option('filename');
+        $written = $this->files->put($filename, $content);
+
+        if ($written !== false) {
+            $this->info("A new meta file was written to $filename");
+        } else {
+            $this->error("The meta file could not be created at $filename");
+        }
+    }
+
+    /**
+     * Get a list of abstracts from the Laravel Application.
+     *
+     * @return array
+     */
+    protected function getAbstracts()
+    {
+        $abstracts = $this->laravel->getBindings();
+
+        // Return the abstract names only
+        $keys = array_keys($abstracts);
+
+        sort($keys);
+
+        return $keys;
+    }
+
+    /**
+     * Register an autoloader the throws exceptions when a class is not found.
+     */
+    protected function registerClassAutoloadExceptions()
+    {
+        spl_autoload_register(function ($class) {
+            throw new \Exception("Class '$class' not found.");
+        });
+    }
+
+    /**
+     * Get the console command options.
+     *
+     * @return array
+     */
+    protected function getOptions()
+    {
+        $filename = $this->config->get('ide-helper.meta_filename');
+
+        return array(
+            array('filename', 'F', InputOption::VALUE_OPTIONAL, 'The path to the meta file', $filename),
+        );
+    }
+}

+ 814 - 0
vendor/barryvdh/laravel-ide-helper/src/Console/ModelsCommand.php

xqd
@@ -0,0 +1,814 @@
+<?php
+/**
+ * Laravel IDE Helper Generator
+ *
+ * @author    Barry vd. Heuvel <barryvdh@gmail.com>
+ * @copyright 2014 Barry vd. Heuvel / Fruitcake Studio (http://www.fruitcakestudio.nl)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      https://github.com/barryvdh/laravel-ide-helper
+ */
+
+namespace Barryvdh\LaravelIdeHelper\Console;
+
+use Composer\Autoload\ClassMapGenerator;
+use Illuminate\Console\Command;
+use Illuminate\Database\Eloquent\Relations\Relation;
+use Illuminate\Support\Str;
+use Illuminate\Filesystem\Filesystem;
+use ReflectionClass;
+use Symfony\Component\Console\Input\InputOption;
+use Symfony\Component\Console\Input\InputArgument;
+use Symfony\Component\Console\Output\OutputInterface;
+use Barryvdh\Reflection\DocBlock;
+use Barryvdh\Reflection\DocBlock\Context;
+use Barryvdh\Reflection\DocBlock\Tag;
+use Barryvdh\Reflection\DocBlock\Serializer as DocBlockSerializer;
+
+/**
+ * A command to generate autocomplete information for your IDE
+ *
+ * @author Barry vd. Heuvel <barryvdh@gmail.com>
+ */
+class ModelsCommand extends Command
+{
+    /**
+     * @var Filesystem $files
+     */
+    protected $files;
+
+    /**
+     * The console command name.
+     *
+     * @var string
+     */
+    protected $name = 'ide-helper:models';
+    protected $filename = '_ide_helper_models.php';
+
+    /**
+     * The console command description.
+     *
+     * @var string
+     */
+    protected $description = 'Generate autocompletion for models';
+
+    protected $write_model_magic_where;
+    protected $properties = array();
+    protected $methods = array();
+    protected $write = false;
+    protected $dirs = array();
+    protected $reset;
+    protected $keep_text;
+    /**
+     * @var bool[string]
+     */
+    protected $nullableColumns = [];
+
+    /**
+     * @param Filesystem $files
+     */
+    public function __construct(Filesystem $files)
+    {
+        parent::__construct();
+        $this->files = $files;
+    }
+
+    /**
+     * Execute the console command.
+     *
+     * @return void
+     */
+    public function handle()
+    {
+        $filename = $this->option('filename');
+        $this->write = $this->option('write');
+        $this->dirs = array_merge(
+            $this->laravel['config']->get('ide-helper.model_locations'),
+            $this->option('dir')
+        );
+        $model = $this->argument('model');
+        $ignore = $this->option('ignore');
+        $this->reset = $this->option('reset');
+        if ($this->option('smart-reset')) {
+            $this->keep_text = $this->reset = true;
+        }
+        $this->write_model_magic_where = $this->laravel['config']->get('ide-helper.write_model_magic_where', true);
+
+        //If filename is default and Write is not specified, ask what to do
+        if (!$this->write && $filename === $this->filename && !$this->option('nowrite')) {
+            if ($this->confirm(
+                "Do you want to overwrite the existing model files? Choose no to write to $filename instead?"
+            )
+            ) {
+                $this->write = true;
+            }
+        }
+
+        $content = $this->generateDocs($model, $ignore);
+
+        if (!$this->write) {
+            $written = $this->files->put($filename, $content);
+            if ($written !== false) {
+                $this->info("Model information was written to $filename");
+            } else {
+                $this->error("Failed to write model information to $filename");
+            }
+        }
+    }
+
+
+    /**
+     * Get the console command arguments.
+     *
+     * @return array
+     */
+    protected function getArguments()
+    {
+        return array(
+          array('model', InputArgument::OPTIONAL | InputArgument::IS_ARRAY, 'Which models to include', array()),
+        );
+    }
+
+    /**
+     * Get the console command options.
+     *
+     * @return array
+     */
+    protected function getOptions()
+    {
+        return array(
+          array('filename', 'F', InputOption::VALUE_OPTIONAL, 'The path to the helper file', $this->filename),
+          array('dir', 'D', InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY, 'The model dir', array()),
+          array('write', 'W', InputOption::VALUE_NONE, 'Write to Model file'),
+          array('nowrite', 'N', InputOption::VALUE_NONE, 'Don\'t write to Model file'),
+          array('reset', 'R', InputOption::VALUE_NONE, 'Remove the original phpdocs instead of appending'),
+          array('smart-reset', 'r', InputOption::VALUE_NONE, 'Refresh the properties/methods list, but keep the text'),
+          array('ignore', 'I', InputOption::VALUE_OPTIONAL, 'Which models to ignore', ''),
+        );
+    }
+
+    protected function generateDocs($loadModels, $ignore = '')
+    {
+
+
+        $output = "<?php
+
+// @formatter:off
+/**
+ * A helper file for your Eloquent Models
+ * Copy the phpDocs from this file to the correct Model,
+ * And remove them from this file, to prevent double declarations.
+ *
+ * @author Barry vd. Heuvel <barryvdh@gmail.com>
+ */
+\n\n";
+
+        $hasDoctrine = interface_exists('Doctrine\DBAL\Driver');
+
+        if (empty($loadModels)) {
+            $models = $this->loadModels();
+        } else {
+            $models = array();
+            foreach ($loadModels as $model) {
+                $models = array_merge($models, explode(',', $model));
+            }
+        }
+
+        $ignore = explode(',', $ignore);
+
+        foreach ($models as $name) {
+            if (in_array($name, $ignore)) {
+                if ($this->output->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) {
+                    $this->comment("Ignoring model '$name'");
+                }
+                continue;
+            }
+            $this->properties = array();
+            $this->methods = array();
+            if (class_exists($name)) {
+                try {
+                    // handle abstract classes, interfaces, ...
+                    $reflectionClass = new ReflectionClass($name);
+
+                    if (!$reflectionClass->isSubclassOf('Illuminate\Database\Eloquent\Model')) {
+                        continue;
+                    }
+
+                    if ($this->output->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) {
+                        $this->comment("Loading model '$name'");
+                    }
+
+                    if (!$reflectionClass->IsInstantiable()) {
+                        // ignore abstract class or interface
+                        continue;
+                    }
+
+                    $model = $this->laravel->make($name);
+
+                    if ($hasDoctrine) {
+                        $this->getPropertiesFromTable($model);
+                    }
+
+                    if (method_exists($model, 'getCasts')) {
+                        $this->castPropertiesType($model);
+                    }
+
+                    $this->getPropertiesFromMethods($model);
+                    $this->getSoftDeleteMethods($model);
+                    $output                .= $this->createPhpDocs($name);
+                    $ignore[]              = $name;
+                    $this->nullableColumns = [];
+                } catch (\Exception $e) {
+                    $this->error("Exception: " . $e->getMessage() . "\nCould not analyze class $name.");
+                }
+            }
+        }
+
+        if (!$hasDoctrine) {
+            $this->error(
+                'Warning: `"doctrine/dbal": "~2.3"` is required to load database information. '.
+                'Please require that in your composer.json and run `composer update`.'
+            );
+        }
+
+        return $output;
+    }
+
+
+    protected function loadModels()
+    {
+        $models = array();
+        foreach ($this->dirs as $dir) {
+            $dir = base_path() . '/' . $dir;
+            if (file_exists($dir)) {
+                foreach (ClassMapGenerator::createMap($dir) as $model => $path) {
+                    $models[] = $model;
+                }
+            }
+        }
+        return $models;
+    }
+
+    /**
+     * cast the properties's type from $casts.
+     *
+     * @param \Illuminate\Database\Eloquent\Model $model
+     */
+    protected function castPropertiesType($model)
+    {
+        $casts = $model->getCasts();
+        foreach ($casts as $name => $type) {
+            switch ($type) {
+                case 'boolean':
+                case 'bool':
+                    $realType = 'boolean';
+                    break;
+                case 'string':
+                    $realType = 'string';
+                    break;
+                case 'array':
+                case 'json':
+                    $realType = 'array';
+                    break;
+                case 'object':
+                    $realType = 'object';
+                    break;
+                case 'int':
+                case 'integer':
+                case 'timestamp':
+                    $realType = 'integer';
+                    break;
+                case 'real':
+                case 'double':
+                case 'float':
+                    $realType = 'float';
+                    break;
+                case 'date':
+                case 'datetime':
+                    $realType = '\Illuminate\Support\Carbon';
+                    break;
+                case 'collection':
+                    $realType = '\Illuminate\Support\Collection';
+                    break;
+                default:
+                    $realType = 'mixed';
+                    break;
+            }
+
+            if (!isset($this->properties[$name])) {
+                continue;
+            } else {
+                $this->properties[$name]['type'] = $this->getTypeOverride($realType);
+
+                if (isset($this->nullableColumns[$name])) {
+                    $this->properties[$name]['type'] .= '|null';
+                }
+            }
+        }
+    }
+
+    /**
+     * Returns the overide type for the give type.
+     *
+     * @param string $type
+     * @return string
+     */
+    protected function getTypeOverride($type)
+    {
+        $typeOverrides = $this->laravel['config']->get('ide-helper.type_overrides', array());
+
+        return isset($typeOverrides[$type]) ? $typeOverrides[$type] : $type;
+    }
+
+    /**
+     * Load the properties from the database table.
+     *
+     * @param \Illuminate\Database\Eloquent\Model $model
+     */
+    protected function getPropertiesFromTable($model)
+    {
+        $table = $model->getConnection()->getTablePrefix() . $model->getTable();
+        $schema = $model->getConnection()->getDoctrineSchemaManager($table);
+        $databasePlatform = $schema->getDatabasePlatform();
+        $databasePlatform->registerDoctrineTypeMapping('enum', 'string');
+
+        $platformName = $databasePlatform->getName();
+        $customTypes = $this->laravel['config']->get("ide-helper.custom_db_types.{$platformName}", array());
+        foreach ($customTypes as $yourTypeName => $doctrineTypeName) {
+            $databasePlatform->registerDoctrineTypeMapping($yourTypeName, $doctrineTypeName);
+        }
+
+        $database = null;
+        if (strpos($table, '.')) {
+            list($database, $table) = explode('.', $table);
+        }
+
+        $columns = $schema->listTableColumns($table, $database);
+
+        if ($columns) {
+            foreach ($columns as $column) {
+                $name = $column->getName();
+                if (in_array($name, $model->getDates())) {
+                    $type = '\Illuminate\Support\Carbon';
+                } else {
+                    $type = $column->getType()->getName();
+                    switch ($type) {
+                        case 'string':
+                        case 'text':
+                        case 'date':
+                        case 'time':
+                        case 'guid':
+                        case 'datetimetz':
+                        case 'datetime':
+                            $type = 'string';
+                            break;
+                        case 'integer':
+                        case 'bigint':
+                        case 'smallint':
+                            $type = 'integer';
+                            break;
+                        case 'boolean':
+                            switch (config('database.default')) {
+                                case 'sqlite':
+                                case 'mysql':
+                                    $type = 'integer';
+                                    break;
+                                default:
+                                    $type = 'boolean';
+                                    break;
+                            }
+                            break;
+                        case 'decimal':
+                        case 'float':
+                            $type = 'float';
+                            break;
+                        default:
+                            $type = 'mixed';
+                            break;
+                    }
+                }
+
+                $comment = $column->getComment();
+                if (!$column->getNotnull()) {
+                    $this->nullableColumns[$name] = true;
+                }
+                $this->setProperty($name, $type, true, true, $comment, !$column->getNotnull());
+                if ($this->write_model_magic_where) {
+                    $this->setMethod(
+                        Str::camel("where_" . $name),
+                        '\Illuminate\Database\Eloquent\Builder|\\' . get_class($model),
+                        array('$value')
+                    );
+                }
+            }
+        }
+    }
+
+    /**
+     * @param \Illuminate\Database\Eloquent\Model $model
+     */
+    protected function getPropertiesFromMethods($model)
+    {
+        $methods = get_class_methods($model);
+        if ($methods) {
+            sort($methods);
+            foreach ($methods as $method) {
+                if (Str::startsWith($method, 'get') && Str::endsWith(
+                    $method,
+                    'Attribute'
+                ) && $method !== 'getAttribute'
+                ) {
+                    //Magic get<name>Attribute
+                    $name = Str::snake(substr($method, 3, -9));
+                    if (!empty($name)) {
+                        $reflection = new \ReflectionMethod($model, $method);
+                        $type = $this->getReturnTypeFromDocBlock($reflection);
+                        $this->setProperty($name, $type, true, null);
+                    }
+                } elseif (Str::startsWith($method, 'set') && Str::endsWith(
+                    $method,
+                    'Attribute'
+                ) && $method !== 'setAttribute'
+                ) {
+                    //Magic set<name>Attribute
+                    $name = Str::snake(substr($method, 3, -9));
+                    if (!empty($name)) {
+                        $this->setProperty($name, null, null, true);
+                    }
+                } elseif (Str::startsWith($method, 'scope') && $method !== 'scopeQuery') {
+                    //Magic set<name>Attribute
+                    $name = Str::camel(substr($method, 5));
+                    if (!empty($name)) {
+                        $reflection = new \ReflectionMethod($model, $method);
+                        $args = $this->getParameters($reflection);
+                        //Remove the first ($query) argument
+                        array_shift($args);
+                        $this->setMethod($name, '\Illuminate\Database\Eloquent\Builder|\\' . $reflection->class, $args);
+                    }
+                } elseif (!method_exists('Illuminate\Database\Eloquent\Model', $method)
+                    && !Str::startsWith($method, 'get')
+                ) {
+                    //Use reflection to inspect the code, based on Illuminate/Support/SerializableClosure.php
+                    $reflection = new \ReflectionMethod($model, $method);
+
+                    $file = new \SplFileObject($reflection->getFileName());
+                    $file->seek($reflection->getStartLine() - 1);
+
+                    $code = '';
+                    while ($file->key() < $reflection->getEndLine()) {
+                        $code .= $file->current();
+                        $file->next();
+                    }
+                    $code = trim(preg_replace('/\s\s+/', '', $code));
+                    $begin = strpos($code, 'function(');
+                    $code = substr($code, $begin, strrpos($code, '}') - $begin + 1);
+
+                    foreach (array(
+                               'hasMany',
+                               'hasManyThrough',
+                               'belongsToMany',
+                               'hasOne',
+                               'belongsTo',
+                               'morphOne',
+                               'morphTo',
+                               'morphMany',
+                               'morphToMany',
+                               'morphedByMany'
+                             ) as $relation) {
+                        $search = '$this->' . $relation . '(';
+                        if ($pos = stripos($code, $search)) {
+                            //Resolve the relation's model to a Relation object.
+                            $methodReflection = new \ReflectionMethod($model, $method);
+                            if ($methodReflection->getNumberOfParameters()) {
+                                return;
+                            }
+
+                            $relationObj = $model->$method();
+
+                            if ($relationObj instanceof Relation) {
+                                $relatedModel = '\\' . get_class($relationObj->getRelated());
+
+                                $relations = [
+                                    'hasManyThrough',
+                                    'belongsToMany',
+                                    'hasMany',
+                                    'morphMany',
+                                    'morphToMany',
+                                    'morphedByMany',
+                                ];
+                                if (in_array($relation, $relations)) {
+                                    //Collection or array of models (because Collection is Arrayable)
+                                    $this->setProperty(
+                                        $method,
+                                        $this->getCollectionClass($relatedModel) . '|' . $relatedModel . '[]',
+                                        true,
+                                        null
+                                    );
+                                } elseif ($relation === "morphTo") {
+                                    // Model isn't specified because relation is polymorphic
+                                    $this->setProperty(
+                                        $method,
+                                        '\Illuminate\Database\Eloquent\Model|\Eloquent',
+                                        true,
+                                        null
+                                    );
+                                } else {
+                                    //Single model is returned
+                                    $this->setProperty(
+                                        $method,
+                                        $relatedModel,
+                                        true,
+                                        null,
+                                        '',
+                                        $this->isRelationForeignKeyNullable($relationObj)
+                                    );
+                                }
+                            }
+                        }
+                    }
+                }
+            }
+        }
+    }
+
+    /**
+     * Check if the foreign key of the relation is nullable
+     *
+     * @param Relation $relation
+     *
+     * @return bool
+     */
+    private function isRelationForeignKeyNullable(Relation $relation)
+    {
+        $reflectionObj = new \ReflectionObject($relation);
+        if (!$reflectionObj->hasProperty('foreignKey')) {
+            return false;
+        }
+        $fkProp = $reflectionObj->getProperty('foreignKey');
+        $fkProp->setAccessible(true);
+
+        return isset($this->nullableColumns[$fkProp->getValue($relation)]);
+    }
+
+    /**
+     * @param string      $name
+     * @param string|null $type
+     * @param bool|null   $read
+     * @param bool|null   $write
+     * @param string|null $comment
+     * @param bool        $nullable
+     */
+    protected function setProperty($name, $type = null, $read = null, $write = null, $comment = '', $nullable = false)
+    {
+        if (!isset($this->properties[$name])) {
+            $this->properties[$name] = array();
+            $this->properties[$name]['type'] = 'mixed';
+            $this->properties[$name]['read'] = false;
+            $this->properties[$name]['write'] = false;
+            $this->properties[$name]['comment'] = (string) $comment;
+        }
+        if ($type !== null) {
+            $newType = $this->getTypeOverride($type);
+            if ($nullable) {
+                $newType .='|null';
+            }
+            $this->properties[$name]['type'] = $newType;
+        }
+        if ($read !== null) {
+            $this->properties[$name]['read'] = $read;
+        }
+        if ($write !== null) {
+            $this->properties[$name]['write'] = $write;
+        }
+    }
+
+    protected function setMethod($name, $type = '', $arguments = array())
+    {
+        $methods = array_change_key_case($this->methods, CASE_LOWER);
+
+        if (!isset($methods[strtolower($name)])) {
+            $this->methods[$name] = array();
+            $this->methods[$name]['type'] = $type;
+            $this->methods[$name]['arguments'] = $arguments;
+        }
+    }
+
+    /**
+     * @param string $class
+     * @return string
+     */
+    protected function createPhpDocs($class)
+    {
+
+        $reflection = new ReflectionClass($class);
+        $namespace = $reflection->getNamespaceName();
+        $classname = $reflection->getShortName();
+        $originalDoc = $reflection->getDocComment();
+        $keyword = $this->getClassKeyword($reflection);
+
+        if ($this->reset) {
+            $phpdoc = new DocBlock('', new Context($namespace));
+            if ($this->keep_text) {
+                $phpdoc->setText(
+                    (new DocBlock($reflection, new Context($namespace)))->getText()
+                );
+            }
+        } else {
+            $phpdoc = new DocBlock($reflection, new Context($namespace));
+        }
+
+        if (!$phpdoc->getText()) {
+            $phpdoc->setText($class);
+        }
+
+        $properties = array();
+        $methods = array();
+        foreach ($phpdoc->getTags() as $tag) {
+            $name = $tag->getName();
+            if ($name == "property" || $name == "property-read" || $name == "property-write") {
+                $properties[] = $tag->getVariableName();
+            } elseif ($name == "method") {
+                $methods[] = $tag->getMethodName();
+            }
+        }
+
+        foreach ($this->properties as $name => $property) {
+            $name = "\$$name";
+            if (in_array($name, $properties)) {
+                continue;
+            }
+            if ($property['read'] && $property['write']) {
+                $attr = 'property';
+            } elseif ($property['write']) {
+                $attr = 'property-write';
+            } else {
+                $attr = 'property-read';
+            }
+
+            if ($this->hasCamelCaseModelProperties()) {
+                $name = Str::camel($name);
+            }
+
+            $tagLine = trim("@{$attr} {$property['type']} {$name} {$property['comment']}");
+            $tag = Tag::createInstance($tagLine, $phpdoc);
+            $phpdoc->appendTag($tag);
+        }
+
+        ksort($this->methods);
+
+        foreach ($this->methods as $name => $method) {
+            if (in_array($name, $methods)) {
+                continue;
+            }
+            $arguments = implode(', ', $method['arguments']);
+            $tag = Tag::createInstance("@method static {$method['type']} {$name}({$arguments})", $phpdoc);
+            $phpdoc->appendTag($tag);
+        }
+
+        if ($this->write && ! $phpdoc->getTagsByName('mixin')) {
+            $phpdoc->appendTag(Tag::createInstance("@mixin \\Eloquent", $phpdoc));
+        }
+
+        $serializer = new DocBlockSerializer();
+        $serializer->getDocComment($phpdoc);
+        $docComment = $serializer->getDocComment($phpdoc);
+
+
+        if ($this->write) {
+            $filename = $reflection->getFileName();
+            $contents = $this->files->get($filename);
+            if ($originalDoc) {
+                $contents = str_replace($originalDoc, $docComment, $contents);
+            } else {
+                $needle = "class {$classname}";
+                $replace = "{$docComment}\nclass {$classname}";
+                $pos = strpos($contents, $needle);
+                if ($pos !== false) {
+                    $contents = substr_replace($contents, $replace, $pos, strlen($needle));
+                }
+            }
+            if ($this->files->put($filename, $contents)) {
+                $this->info('Written new phpDocBlock to ' . $filename);
+            }
+        }
+
+        $output = "namespace {$namespace}{\n{$docComment}\n\t{$keyword}class {$classname} extends \Eloquent {}\n}\n\n";
+        return $output;
+    }
+
+    /**
+     * Get the parameters and format them correctly
+     *
+     * @param $method
+     * @return array
+     */
+    public function getParameters($method)
+    {
+        //Loop through the default values for paremeters, and make the correct output string
+        $params = array();
+        $paramsWithDefault = array();
+        /** @var \ReflectionParameter $param */
+        foreach ($method->getParameters() as $param) {
+            $paramClass = $param->getClass();
+            $paramStr = (!is_null($paramClass) ? '\\' . $paramClass->getName() . ' ' : '') . '$' . $param->getName();
+            $params[] = $paramStr;
+            if ($param->isOptional() && $param->isDefaultValueAvailable()) {
+                $default = $param->getDefaultValue();
+                if (is_bool($default)) {
+                    $default = $default ? 'true' : 'false';
+                } elseif (is_array($default)) {
+                    $default = 'array()';
+                } elseif (is_null($default)) {
+                    $default = 'null';
+                } elseif (is_int($default)) {
+                    //$default = $default;
+                } else {
+                    $default = "'" . trim($default) . "'";
+                }
+                $paramStr .= " = $default";
+            }
+            $paramsWithDefault[] = $paramStr;
+        }
+        return $paramsWithDefault;
+    }
+
+    /**
+     * Determine a model classes' collection type.
+     *
+     * @see http://laravel.com/docs/eloquent-collections#custom-collections
+     * @param string $className
+     * @return string
+     */
+    private function getCollectionClass($className)
+    {
+        // Return something in the very very unlikely scenario the model doesn't
+        // have a newCollection() method.
+        if (!method_exists($className, 'newCollection')) {
+            return '\Illuminate\Database\Eloquent\Collection';
+        }
+
+        /** @var \Illuminate\Database\Eloquent\Model $model */
+        $model = new $className;
+        return '\\' . get_class($model->newCollection());
+    }
+
+    /**
+     * @return bool
+     */
+    protected function hasCamelCaseModelProperties()
+    {
+        return $this->laravel['config']->get('ide-helper.model_camel_case_properties', false);
+    }
+
+    /**
+     * Get method return type based on it DocBlock comment
+     *
+     * @param \ReflectionMethod $reflection
+     *
+     * @return null|string
+     */
+    protected function getReturnTypeFromDocBlock(\ReflectionMethod $reflection)
+    {
+        $type = null;
+        $phpdoc = new DocBlock($reflection);
+
+        if ($phpdoc->hasTag('return')) {
+            $type = $phpdoc->getTagsByName('return')[0]->getType();
+        }
+
+        return $type;
+    }
+
+    /**
+     * Generates methods provided by the SoftDeletes trait
+     * @param \Illuminate\Database\Eloquent\Model $model
+     */
+    protected function getSoftDeleteMethods($model)
+    {
+        $traits = class_uses(get_class($model), true);
+        if (in_array('Illuminate\\Database\\Eloquent\\SoftDeletes', $traits)) {
+            $this->setMethod('forceDelete', 'bool|null', []);
+            $this->setMethod('restore', 'bool|null', []);
+
+            $this->setMethod('withTrashed', '\Illuminate\Database\Query\Builder|\\' . get_class($model), []);
+            $this->setMethod('withoutTrashed', '\Illuminate\Database\Query\Builder|\\' . get_class($model), []);
+            $this->setMethod('onlyTrashed', '\Illuminate\Database\Query\Builder|\\' . get_class($model), []);
+        }
+    }
+
+    /**
+     * @param ReflectionClass $reflection
+     * @return string
+     */
+    private function getClassKeyword(ReflectionClass $reflection)
+    {
+        if ($reflection->isFinal()) {
+            $keyword = 'final ';
+        } elseif ($reflection->isAbstract()) {
+            $keyword = 'abstract ';
+        } else {
+            $keyword = '';
+        }
+
+        return $keyword;
+    }
+}

+ 78 - 0
vendor/barryvdh/laravel-ide-helper/src/Eloquent.php

xqd
@@ -0,0 +1,78 @@
+<?php
+
+/**
+ * Laravel IDE Helper to add \Eloquent mixin to Eloquent\Model
+ *
+ * @author Charles A. Peterson <artistan@gmail.com>
+ */
+namespace Barryvdh\LaravelIdeHelper;
+
+use Illuminate\Console\Command;
+use Illuminate\Filesystem\Filesystem;
+use Barryvdh\Reflection\DocBlock;
+use Barryvdh\Reflection\DocBlock\Context;
+use Barryvdh\Reflection\DocBlock\Serializer as DocBlockSerializer;
+use Barryvdh\Reflection\DocBlock\Tag;
+
+class Eloquent
+{
+    /**
+     * Write mixin helper to the Eloquent\Model
+     * This is needed since laravel/framework v5.4.29
+     *
+     * @param Command    $command
+     * @param Filesystem $files
+     *
+     * @return void
+     */
+    public static function writeEloquentModelHelper(Command $command, Filesystem $files)
+    {
+        $class = 'Illuminate\Database\Eloquent\Model';
+
+        $reflection  = new \ReflectionClass($class);
+        $namespace   = $reflection->getNamespaceName();
+        $originalDoc = $reflection->getDocComment();
+        if (!$originalDoc) {
+            $command->info('Unexpected no document on ' . $class);
+        }
+        $phpdoc = new DocBlock($reflection, new Context($namespace));
+
+        $mixins = $phpdoc->getTagsByName('mixin');
+        foreach ($mixins as $m) {
+            if ($m->getContent() === '\Eloquent') {
+                $command->info('Tag Exists: @mixin \Eloquent in ' . $class);
+
+                return;
+            }
+        }
+
+        // add the Eloquent mixin
+        $phpdoc->appendTag(Tag::createInstance("@mixin \\Eloquent", $phpdoc));
+
+        $serializer = new DocBlockSerializer();
+        $serializer->getDocComment($phpdoc);
+        $docComment = $serializer->getDocComment($phpdoc);
+
+        $filename = $reflection->getFileName();
+        if ($filename) {
+            $contents = $files->get($filename);
+            if ($contents) {
+                $count    = 0;
+                $contents = str_replace($originalDoc, $docComment, $contents, $count);
+                if ($count > 0) {
+                    if ($files->put($filename, $contents)) {
+                        $command->info('Wrote @mixin \Eloquent to ' . $filename);
+                    } else {
+                        $command->error('File write failed to ' . $filename);
+                    }
+                } else {
+                    $command->error('Content did not change ' . $contents);
+                }
+            } else {
+                $command->error('No file contents found ' . $filename);
+            }
+        } else {
+            $command->error('Filename not found ' . $class);
+        }
+    }
+}

+ 324 - 0
vendor/barryvdh/laravel-ide-helper/src/Generator.php

xqd
@@ -0,0 +1,324 @@
+<?php
+/**
+ * Laravel IDE Helper Generator
+ *
+ * @author    Barry vd. Heuvel <barryvdh@gmail.com>
+ * @copyright 2014 Barry vd. Heuvel / Fruitcake Studio (http://www.fruitcakestudio.nl)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      https://github.com/barryvdh/laravel-ide-helper
+ */
+
+namespace Barryvdh\LaravelIdeHelper;
+
+use Illuminate\Foundation\Application;
+use Illuminate\Foundation\AliasLoader;
+use Illuminate\Support\Collection;
+use ReflectionClass;
+use Symfony\Component\Console\Output\OutputInterface;
+
+class Generator
+{
+    /** @var \Illuminate\Config\Repository */
+    protected $config;
+
+    /** @var \Illuminate\View\Factory */
+    protected $view;
+
+    /** @var \Symfony\Component\Console\Output\OutputInterface */
+    protected $output;
+
+    protected $extra = array();
+    protected $magic = array();
+    protected $interfaces = array();
+    protected $helpers;
+
+    /**
+     * @param \Illuminate\Config\Repository $config
+     * @param \Illuminate\View\Factory $view
+     * @param \Symfony\Component\Console\Output\OutputInterface $output
+     * @param string $helpers
+     */
+    public function __construct(
+        /*ConfigRepository */ $config,
+        /* Illuminate\View\Factory */ $view,
+        OutputInterface $output = null,
+        $helpers = ''
+    ) {
+        $this->config = $config;
+        $this->view = $view;
+
+        // Find the drivers to add to the extra/interfaces
+        $this->detectDrivers();
+
+        $this->extra = array_merge($this->extra, $this->config->get('ide-helper.extra'));
+        $this->magic = array_merge($this->magic, $this->config->get('ide-helper.magic'));
+        $this->interfaces = array_merge($this->interfaces, $this->config->get('ide-helper.interfaces'));
+        // Make all interface classes absolute
+        foreach ($this->interfaces as &$interface) {
+            $interface = '\\' . ltrim($interface, '\\');
+        }
+        $this->helpers = $helpers;
+    }
+
+    /**
+     * Generate the helper file contents;
+     *
+     * @param  string  $format  The format to generate the helper in (php/json)
+     * @return string;
+     */
+    public function generate($format = 'php')
+    {
+        // Check if the generator for this format exists
+        $method = 'generate'.ucfirst($format).'Helper';
+        if (method_exists($this, $method)) {
+            return $this->$method();
+        }
+
+        return $this->generatePhpHelper();
+    }
+
+    public function generatePhpHelper()
+    {
+        $app = app();
+        return $this->view->make('helper')
+            ->with('namespaces_by_extends_ns', $this->getAliasesByExtendsNamespace())
+            ->with('namespaces_by_alias_ns', $this->getAliasesByAliasNamespace())
+            ->with('helpers', $this->helpers)
+            ->with('version', $app->version())
+            ->with('include_fluent', $this->config->get('ide-helper.include_fluent', true))
+            ->render();
+    }
+
+    public function generateJsonHelper()
+    {
+        $classes = array();
+        foreach ($this->getValidAliases() as $aliases) {
+            foreach ($aliases as $alias) {
+                $functions = array();
+                foreach ($alias->getMethods() as $method) {
+                    $functions[$method->getName()] = '('. $method->getParamsWithDefault().')';
+                }
+                $classes[$alias->getAlias()] = array(
+                    'functions' => $functions,
+                );
+            }
+        }
+
+        $flags = JSON_FORCE_OBJECT;
+        if (defined('JSON_PRETTY_PRINT')) {
+            $flags |= JSON_PRETTY_PRINT;
+        }
+
+        return json_encode(array(
+            'php' => array(
+                'classes' => $classes,
+            ),
+        ), $flags);
+    }
+
+    protected function detectDrivers()
+    {
+        $defaultUserModel = config('auth.providers.users.model', config('auth.model', 'App\User'));
+        $this->interfaces['\Illuminate\Contracts\Auth\Authenticatable'] = $defaultUserModel;
+
+        try {
+            if (class_exists('Auth') && is_a('Auth', '\Illuminate\Support\Facades\Auth', true)) {
+                if (class_exists('\Illuminate\Foundation\Application')) {
+                    $authMethod = version_compare(Application::VERSION, '5.2', '>=') ? 'guard' : 'driver';
+                } else {
+                    $refClass = new ReflectionClass('\Laravel\Lumen\Application');
+                    $versionStr = $refClass->newInstanceWithoutConstructor()->version();
+                    $authMethod = strpos($versionStr, 'Lumen (5.0') === 0 ?
+                        'driver' :
+                        (strpos($versionStr, 'Lumen (5.1') === 0 ? 'driver' : 'guard');
+                }
+                $class = get_class(\Auth::$authMethod());
+                $this->extra['Auth'] = array($class);
+                $this->interfaces['\Illuminate\Auth\UserProviderInterface'] = $class;
+            }
+        } catch (\Exception $e) {
+        }
+
+        try {
+            if (class_exists('DB') && is_a('DB', '\Illuminate\Support\Facades\DB', true)) {
+                $class = get_class(\DB::connection());
+                $this->extra['DB'] = array($class);
+                $this->interfaces['\Illuminate\Database\ConnectionInterface'] = $class;
+            }
+        } catch (\Exception $e) {
+        }
+
+        try {
+            if (class_exists('Cache') && is_a('Cache', '\Illuminate\Support\Facades\Cache', true)) {
+                $driver = get_class(\Cache::driver());
+                $store = get_class(\Cache::getStore());
+                $this->extra['Cache'] = array($driver, $store);
+                $this->interfaces['\Illuminate\Cache\StoreInterface'] = $store;
+            }
+        } catch (\Exception $e) {
+        }
+
+        try {
+            if (class_exists('Queue') && is_a('Queue', '\Illuminate\Support\Facades\Queue', true)) {
+                $class = get_class(\Queue::connection());
+                $this->extra['Queue'] = array($class);
+                $this->interfaces['\Illuminate\Queue\QueueInterface'] = $class;
+            }
+        } catch (\Exception $e) {
+        }
+
+        try {
+            if (class_exists('SSH') && is_a('SSH', '\Illuminate\Support\Facades\SSH', true)) {
+                $class = get_class(\SSH::connection());
+                $this->extra['SSH'] = array($class);
+                $this->interfaces['\Illuminate\Remote\ConnectionInterface'] = $class;
+            }
+        } catch (\Exception $e) {
+        }
+
+        try {
+            if (class_exists('Storage') && is_a('Storage', '\Illuminate\Support\Facades\Storage', true)) {
+                $class = get_class(\Storage::disk());
+                $this->extra['Storage'] = array($class);
+                $this->interfaces['\Illuminate\Contracts\Filesystem\Filesystem'] = $class;
+            }
+        } catch (\Exception $e) {
+        }
+    }
+
+    /**
+     * Find all aliases that are valid for us to render
+     *
+     * @return Collection
+     */
+    protected function getValidAliases()
+    {
+        $aliases = new Collection();
+
+        // Get all aliases
+        foreach ($this->getAliases() as $name => $facade) {
+            // Skip the Redis facade, if not available (otherwise Fatal PHP Error)
+            if ($facade == 'Illuminate\Support\Facades\Redis' && !class_exists('Predis\Client')) {
+                continue;
+            }
+
+            $magicMethods = array_key_exists($name, $this->magic) ? $this->magic[$name] : array();
+            $alias = new Alias($name, $facade, $magicMethods, $this->interfaces);
+            if ($alias->isValid()) {
+                //Add extra methods, from other classes (magic static calls)
+                if (array_key_exists($name, $this->extra)) {
+                    $alias->addClass($this->extra[$name]);
+                }
+
+                $aliases[] = $alias;
+            }
+        }
+
+        return $aliases;
+    }
+
+    /**
+     * Regroup aliases by namespace of extended classes
+     *
+     * @return Collection
+     */
+    protected function getAliasesByExtendsNamespace()
+    {
+        return $this->getValidAliases()->groupBy(function (Alias $alias) {
+            return $alias->getExtendsNamespace();
+        });
+    }
+
+    /**
+     * Regroup aliases by namespace of alias
+     *
+     * @return Collection
+     */
+    protected function getAliasesByAliasNamespace()
+    {
+        return $this->getValidAliases()->groupBy(function (Alias $alias) {
+            return $alias->getNamespace();
+        });
+    }
+
+    protected function getAliases()
+    {
+        // For Laravel, use the AliasLoader
+        if (class_exists('Illuminate\Foundation\AliasLoader')) {
+            return AliasLoader::getInstance()->getAliases();
+        }
+
+        $facades = [
+          'App' => 'Illuminate\Support\Facades\App',
+          'Auth' => 'Illuminate\Support\Facades\Auth',
+          'Bus' => 'Illuminate\Support\Facades\Bus',
+          'DB' => 'Illuminate\Support\Facades\DB',
+          'Cache' => 'Illuminate\Support\Facades\Cache',
+          'Cookie' => 'Illuminate\Support\Facades\Cookie',
+          'Crypt' => 'Illuminate\Support\Facades\Crypt',
+          'Event' => 'Illuminate\Support\Facades\Event',
+          'Hash' => 'Illuminate\Support\Facades\Hash',
+          'Log' => 'Illuminate\Support\Facades\Log',
+          'Mail' => 'Illuminate\Support\Facades\Mail',
+          'Queue' => 'Illuminate\Support\Facades\Queue',
+          'Request' => 'Illuminate\Support\Facades\Request',
+          'Schema' => 'Illuminate\Support\Facades\Schema',
+          'Session' => 'Illuminate\Support\Facades\Session',
+          'Storage' => 'Illuminate\Support\Facades\Storage',
+          'Validator' => 'Illuminate\Support\Facades\Validator',
+          'Gate' => 'Illuminate\Support\Facades\Gate',
+        ];
+
+        $facades = array_merge($facades, $this->config->get('app.aliases', []));
+
+        // Only return the ones that actually exist
+        return array_filter($facades, function ($alias) {
+            return class_exists($alias);
+        });
+    }
+
+    /**
+     * Get the driver/connection/store from the managers
+     *
+     * @param $alias
+     * @return array|bool|string
+     */
+    public function getDriver($alias)
+    {
+        try {
+            if ($alias == "Auth") {
+                $driver = \Auth::driver();
+            } elseif ($alias == "DB") {
+                $driver = \DB::connection();
+            } elseif ($alias == "Cache") {
+                $driver = get_class(\Cache::driver());
+                $store = get_class(\Cache::getStore());
+                return array($driver, $store);
+            } elseif ($alias == "Queue") {
+                $driver = \Queue::connection();
+            } else {
+                return false;
+            }
+
+            return get_class($driver);
+        } catch (\Exception $e) {
+            $this->error("Could not determine driver/connection for $alias.");
+            return false;
+        }
+    }
+
+    /**
+     * Write a string as error output.
+     *
+     * @param  string  $string
+     * @return void
+     */
+    protected function error($string)
+    {
+        if ($this->output) {
+            $this->output->writeln("<error>$string</error>");
+        } else {
+            echo $string . "\r\n";
+        }
+    }
+}

+ 124 - 0
vendor/barryvdh/laravel-ide-helper/src/IdeHelperServiceProvider.php

xqd
@@ -0,0 +1,124 @@
+<?php
+/**
+ * Laravel IDE Helper Generator
+ *
+ * @author    Barry vd. Heuvel <barryvdh@gmail.com>
+ * @copyright 2014 Barry vd. Heuvel / Fruitcake Studio (http://www.fruitcakestudio.nl)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      https://github.com/barryvdh/laravel-ide-helper
+ */
+
+namespace Barryvdh\LaravelIdeHelper;
+
+use Barryvdh\LaravelIdeHelper\Console\EloquentCommand;
+use Barryvdh\LaravelIdeHelper\Console\GeneratorCommand;
+use Barryvdh\LaravelIdeHelper\Console\MetaCommand;
+use Barryvdh\LaravelIdeHelper\Console\ModelsCommand;
+use Illuminate\Support\ServiceProvider;
+use Illuminate\View\Engines\EngineResolver;
+use Illuminate\View\Engines\PhpEngine;
+use Illuminate\View\Factory;
+use Illuminate\View\FileViewFinder;
+
+class IdeHelperServiceProvider extends ServiceProvider
+{
+
+    /**
+     * Indicates if loading of the provider is deferred.
+     *
+     * @var bool
+     */
+    protected $defer = true;
+
+    /**
+     * Bootstrap the application events.
+     *
+     * @return void
+     */
+    public function boot()
+    {
+        $viewPath = __DIR__.'/../resources/views';
+        $this->loadViewsFrom($viewPath, 'ide-helper');
+
+        $configPath = __DIR__ . '/../config/ide-helper.php';
+        if (function_exists('config_path')) {
+            $publishPath = config_path('ide-helper.php');
+        } else {
+            $publishPath = base_path('config/ide-helper.php');
+        }
+        $this->publishes([$configPath => $publishPath], 'config');
+    }
+
+    /**
+     * Register the service provider.
+     *
+     * @return void
+     */
+    public function register()
+    {
+        $configPath = __DIR__ . '/../config/ide-helper.php';
+        $this->mergeConfigFrom($configPath, 'ide-helper');
+        $localViewFactory = $this->createLocalViewFactory();
+
+        $this->app->singleton(
+            'command.ide-helper.generate',
+            function ($app) use ($localViewFactory) {
+                return new GeneratorCommand($app['config'], $app['files'], $localViewFactory);
+            }
+        );
+
+        $this->app->singleton(
+            'command.ide-helper.models',
+            function ($app) {
+                return new ModelsCommand($app['files']);
+            }
+        );
+
+        $this->app->singleton(
+            'command.ide-helper.meta',
+            function ($app) use ($localViewFactory) {
+                return new MetaCommand($app['files'], $localViewFactory, $app['config']);
+            }
+        );
+
+        $this->app->singleton(
+            'command.ide-helper.eloquent',
+            function ($app) use ($localViewFactory) {
+                return new EloquentCommand($app['files']);
+            }
+        );
+
+        $this->commands(
+            'command.ide-helper.generate',
+            'command.ide-helper.models',
+            'command.ide-helper.meta',
+            'command.ide-helper.eloquent'
+        );
+    }
+
+    /**
+     * Get the services provided by the provider.
+     *
+     * @return array
+     */
+    public function provides()
+    {
+        return array('command.ide-helper.generate', 'command.ide-helper.models');
+    }
+
+    /**
+     * @return Factory
+     */
+    private function createLocalViewFactory()
+    {
+        $resolver = new EngineResolver();
+        $resolver->register('php', function () {
+            return new PhpEngine();
+        });
+        $finder = new FileViewFinder($this->app['files'], [__DIR__ . '/../resources/views']);
+        $factory = new Factory($resolver, $finder, $this->app['events']);
+        $factory->addExtension('php', 'php');
+
+        return $factory;
+    }
+}

+ 52 - 0
vendor/barryvdh/laravel-ide-helper/src/Macro.php

xqd
@@ -0,0 +1,52 @@
+<?php
+
+namespace Barryvdh\LaravelIdeHelper;
+
+use Barryvdh\Reflection\DocBlock;
+use Barryvdh\Reflection\DocBlock\Tag;
+
+class Macro extends Method
+{
+    /**
+     * Macro constructor.
+     *
+     * @param \ReflectionFunctionAbstract $method
+     * @param string              $alias
+     * @param \ReflectionClass    $class
+     * @param null                $methodName
+     * @param array               $interfaces
+     */
+    public function __construct(
+        \ReflectionFunctionAbstract $method,
+        $alias,
+        $class,
+        $methodName = null,
+        $interfaces = array()
+    ) {
+        $this->method = $method;
+        $this->interfaces = $interfaces;
+        $this->name = $methodName ?: $method->name;
+        $this->namespace = $class->getNamespaceName();
+
+        //Create a DocBlock and serializer instance
+        $this->phpdoc = new DocBlock($method);
+
+        //Normalize the description and inherit the docs from parents/interfaces
+        try {
+            $this->normalizeParams($this->phpdoc);
+            $this->normalizeReturn($this->phpdoc);
+            $this->normalizeDescription($this->phpdoc);
+        } catch (\Exception $e) {
+        }
+
+        //Get the parameters, including formatted default values
+        $this->getParameters($method);
+
+        //Make the method static
+        $this->phpdoc->appendTag(Tag::createInstance('@static', $this->phpdoc));
+
+        //Reference the 'real' function in the declaringclass
+        $this->declaringClassName = '\\' . ltrim($class->name, '\\');
+        $this->root = '\\' . ltrim($class->getName(), '\\');
+    }
+}

+ 314 - 0
vendor/barryvdh/laravel-ide-helper/src/Method.php

xqd
@@ -0,0 +1,314 @@
+<?php
+/**
+ * Laravel IDE Helper Generator
+ *
+ * @author    Barry vd. Heuvel <barryvdh@gmail.com>
+ * @copyright 2014 Barry vd. Heuvel / Fruitcake Studio (http://www.fruitcakestudio.nl)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      https://github.com/barryvdh/laravel-ide-helper
+ */
+
+namespace Barryvdh\LaravelIdeHelper;
+
+use Barryvdh\Reflection\DocBlock;
+use Barryvdh\Reflection\DocBlock\Context;
+use Barryvdh\Reflection\DocBlock\Tag;
+use Barryvdh\Reflection\DocBlock\Tag\ReturnTag;
+use Barryvdh\Reflection\DocBlock\Tag\ParamTag;
+use Barryvdh\Reflection\DocBlock\Serializer as DocBlockSerializer;
+
+class Method
+{
+    /** @var \Barryvdh\Reflection\DocBlock  */
+    protected $phpdoc;
+
+    /** @var \ReflectionMethod  */
+    protected $method;
+
+    protected $output = '';
+    protected $name;
+    protected $namespace;
+    protected $params = array();
+    protected $params_with_default = array();
+    protected $interfaces = array();
+    protected $return = null;
+
+    /**
+     * @param \ReflectionMethod $method
+     * @param string $alias
+     * @param \ReflectionClass $class
+     * @param string|null $methodName
+     * @param array $interfaces
+     */
+    public function __construct(\ReflectionMethod $method, $alias, $class, $methodName = null, $interfaces = array())
+    {
+        $this->method = $method;
+        $this->interfaces = $interfaces;
+        $this->name = $methodName ?: $method->name;
+        $this->namespace = $method->getDeclaringClass()->getNamespaceName();
+
+        //Create a DocBlock and serializer instance
+        $this->phpdoc = new DocBlock($method, new Context($this->namespace));
+
+        //Normalize the description and inherit the docs from parents/interfaces
+        try {
+            $this->normalizeParams($this->phpdoc);
+            $this->normalizeReturn($this->phpdoc);
+            $this->normalizeDescription($this->phpdoc);
+        } catch (\Exception $e) {
+        }
+
+        //Get the parameters, including formatted default values
+        $this->getParameters($method);
+
+        //Make the method static
+        $this->phpdoc->appendTag(Tag::createInstance('@static', $this->phpdoc));
+
+        //Reference the 'real' function in the declaringclass
+        $declaringClass = $method->getDeclaringClass();
+        $this->declaringClassName = '\\' . ltrim($declaringClass->name, '\\');
+        $this->root = '\\' . ltrim($class->getName(), '\\');
+    }
+
+    /**
+     * Get the class wherein the function resides
+     *
+     * @return string
+     */
+    public function getDeclaringClass()
+    {
+        return $this->declaringClassName;
+    }
+
+    /**
+     * Return the class from which this function would be called
+     *
+     * @return string
+     */
+    public function getRoot()
+    {
+        return $this->root;
+    }
+
+    /**
+     * Get the docblock for this method
+     *
+     * @param string $prefix
+     * @return mixed
+     */
+    public function getDocComment($prefix = "\t\t")
+    {
+        $serializer = new DocBlockSerializer(1, $prefix);
+        return $serializer->getDocComment($this->phpdoc);
+    }
+
+    /**
+     * Get the method name
+     *
+     * @return string
+     */
+    public function getName()
+    {
+        return $this->name;
+    }
+
+    /**
+     * Get the parameters for this method
+     *
+     * @param bool $implode Wether to implode the array or not
+     * @return string
+     */
+    public function getParams($implode = true)
+    {
+        return $implode ? implode(', ', $this->params) : $this->params;
+    }
+
+    /**
+     * Get the parameters for this method including default values
+     *
+     * @param bool $implode Wether to implode the array or not
+     * @return string
+     */
+    public function getParamsWithDefault($implode = true)
+    {
+        return $implode ? implode(', ', $this->params_with_default) : $this->params_with_default;
+    }
+
+    /**
+     * Get the description and get the inherited docs.
+     *
+     * @param DocBlock $phpdoc
+     */
+    protected function normalizeDescription(DocBlock $phpdoc)
+    {
+        //Get the short + long description from the DocBlock
+        $description = $phpdoc->getText();
+
+        //Loop through parents/interfaces, to fill in {@inheritdoc}
+        if (strpos($description, '{@inheritdoc}') !== false) {
+            $inheritdoc = $this->getInheritDoc($this->method);
+            $inheritDescription = $inheritdoc->getText();
+
+            $description = str_replace('{@inheritdoc}', $inheritDescription, $description);
+            $phpdoc->setText($description);
+
+            $this->normalizeParams($inheritdoc);
+            $this->normalizeReturn($inheritdoc);
+
+            //Add the tags that are inherited
+            $inheritTags = $inheritdoc->getTags();
+            if ($inheritTags) {
+                /** @var Tag $tag */
+                foreach ($inheritTags as $tag) {
+                    $tag->setDocBlock();
+                    $phpdoc->appendTag($tag);
+                }
+            }
+        }
+    }
+
+    /**
+     * Normalize the parameters
+     *
+     * @param DocBlock $phpdoc
+     */
+    protected function normalizeParams(DocBlock $phpdoc)
+    {
+        //Get the return type and adjust them for beter autocomplete
+        $paramTags = $phpdoc->getTagsByName('param');
+        if ($paramTags) {
+            /** @var ParamTag $tag */
+            foreach ($paramTags as $tag) {
+                // Convert the keywords
+                $content = $this->convertKeywords($tag->getContent());
+                $tag->setContent($content);
+
+                // Get the expanded type and re-set the content
+                $content = $tag->getType() . ' ' . $tag->getVariableName() . ' ' . $tag->getDescription();
+                $tag->setContent(trim($content));
+            }
+        }
+    }
+
+    /**
+     * Normalize the return tag (make full namespace, replace interfaces)
+     *
+     * @param DocBlock $phpdoc
+     */
+    protected function normalizeReturn(DocBlock $phpdoc)
+    {
+        //Get the return type and adjust them for beter autocomplete
+        $returnTags = $phpdoc->getTagsByName('return');
+        if ($returnTags) {
+            /** @var ReturnTag $tag */
+            $tag = reset($returnTags);
+            // Get the expanded type
+            $returnValue = $tag->getType();
+
+            // Replace the interfaces
+            foreach ($this->interfaces as $interface => $real) {
+                $returnValue = str_replace($interface, $real, $returnValue);
+            }
+
+            // Set the changed content
+            $tag->setContent($returnValue . ' ' . $tag->getDescription());
+            $this->return = $returnValue;
+        } else {
+            $this->return = null;
+        }
+    }
+
+    /**
+     * Convert keywwords that are incorrect.
+     *
+     * @param  string $string
+     * @return string
+     */
+    protected function convertKeywords($string)
+    {
+        $string = str_replace('\Closure', 'Closure', $string);
+        $string = str_replace('Closure', '\Closure', $string);
+        $string = str_replace('dynamic', 'mixed', $string);
+
+        return $string;
+    }
+
+    /**
+     * Should the function return a value?
+     *
+     * @return bool
+     */
+    public function shouldReturn()
+    {
+        if ($this->return !== "void" && $this->method->name !== "__construct") {
+            return true;
+        }
+
+        return false;
+    }
+
+    /**
+     * Get the parameters and format them correctly
+     *
+     * @param  \ReflectionMethod $method
+     * @return array
+     */
+    public function getParameters($method)
+    {
+        //Loop through the default values for paremeters, and make the correct output string
+        $params = array();
+        $paramsWithDefault = array();
+        foreach ($method->getParameters() as $param) {
+            $paramStr = '$' . $param->getName();
+            $params[] = $paramStr;
+            if ($param->isOptional()) {
+                $default = $param->isDefaultValueAvailable() ? $param->getDefaultValue() : null;
+                if (is_bool($default)) {
+                    $default = $default ? 'true' : 'false';
+                } elseif (is_array($default)) {
+                    $default = 'array()';
+                } elseif (is_null($default)) {
+                    $default = 'null';
+                } elseif (is_int($default)) {
+                    //$default = $default;
+                } elseif (is_resource($default)) {
+                    //skip to not fail
+                } else {
+                    $default = "'" . trim($default) . "'";
+                }
+                $paramStr .= " = $default";
+            }
+            $paramsWithDefault[] = $paramStr;
+        }
+
+        $this->params = $params;
+        $this->params_with_default = $paramsWithDefault;
+    }
+
+    /**
+     * @param \ReflectionMethod $reflectionMethod
+     * @return DocBlock
+     */
+    protected function getInheritDoc($reflectionMethod)
+    {
+        $parentClass = $reflectionMethod->getDeclaringClass()->getParentClass();
+
+        //Get either a parent or the interface
+        if ($parentClass) {
+            $method = $parentClass->getMethod($reflectionMethod->getName());
+        } else {
+            $method = $reflectionMethod->getPrototype();
+        }
+        if ($method) {
+            $namespace = $method->getDeclaringClass()->getNamespaceName();
+            $phpdoc = new DocBlock($method, new Context($namespace));
+            
+            if (strpos($phpdoc->getText(), '{@inheritdoc}') !== false) {
+                //Not at the end yet, try another parent/interface..
+                return $this->getInheritDoc($method);
+            } else {
+                return $phpdoc;
+            }
+        }
+    }
+}

+ 2 - 0
vendor/barryvdh/reflection-docblock/.gitignore

xqd
@@ -0,0 +1,2 @@
+.idea
+vendor

+ 32 - 0
vendor/barryvdh/reflection-docblock/.travis.yml

xqd
@@ -0,0 +1,32 @@
+language: php
+php:
+  - 5.3.3
+  - 5.3
+  - 5.4
+  - 5.5
+  - 5.6
+  - hhvm
+  - hhvm-nightly
+
+matrix:
+    allow_failures:
+        - php: hhvm
+        - php: hhvm-nightly
+
+script:
+ - vendor/bin/phpunit
+
+before_script:
+ - sudo apt-get -qq update > /dev/null
+ - phpenv rehash > /dev/null
+ - composer selfupdate --quiet
+ - composer install --no-interaction --prefer-source --dev
+ - vendor/bin/phpunit
+ - composer update --no-interaction --prefer-source --dev
+
+notifications:
+  irc: "irc.freenode.org#phpdocumentor"
+  email:
+    - mike.vanriel@naenius.com
+    - ashnazg@php.net
+    - boen.robot@gmail.com

+ 21 - 0
vendor/barryvdh/reflection-docblock/LICENSE

xqd
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2010 Mike van Riel
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

+ 57 - 0
vendor/barryvdh/reflection-docblock/README.md

xqd
@@ -0,0 +1,57 @@
+The ReflectionDocBlock Component [![Build Status](https://secure.travis-ci.org/phpDocumentor/ReflectionDocBlock.png)](https://travis-ci.org/phpDocumentor/ReflectionDocBlock)
+================================
+
+Introduction
+------------
+
+The ReflectionDocBlock component of phpDocumentor provides a DocBlock parser
+that is 100% compatible with the [PHPDoc standard](http://phpdoc.org/docs/latest).
+
+With this component, a library can provide support for annotations via DocBlocks
+or otherwise retrieve information that is embedded in a DocBlock.
+
+> **Note**: *this is a core component of phpDocumentor and is constantly being
+> optimized for performance.*
+
+Installation
+------------
+
+You can install the component in the following ways:
+
+* Use the official Github repository (https://github.com/phpDocumentor/ReflectionDocBlock)
+* Via Composer (http://packagist.org/packages/phpdocumentor/reflection-docblock)
+
+Usage
+-----
+
+The ReflectionDocBlock component is designed to work in an identical fashion to
+PHP's own Reflection extension (http://php.net/manual/en/book.reflection.php).
+
+Parsing can be initiated by instantiating the
+`\phpDocumentor\Reflection\DocBlock()` class and passing it a string containing
+a DocBlock (including asterisks) or by passing an object supporting the
+`getDocComment()` method.
+
+> *Examples of objects having the `getDocComment()` method are the
+> `ReflectionClass` and the `ReflectionMethod` classes of the PHP
+> Reflection extension*
+
+Example:
+
+    $class = new ReflectionClass('MyClass');
+    $phpdoc = new \phpDocumentor\Reflection\DocBlock($class);
+
+or
+
+    $docblock = <<<DOCBLOCK
+    /**
+     * This is a short description.
+     *
+     * This is a *long* description.
+     *
+     * @return void
+     */
+    DOCBLOCK;
+
+    $phpdoc = new \phpDocumentor\Reflection\DocBlock($docblock);
+

+ 26 - 0
vendor/barryvdh/reflection-docblock/composer.json

xqd
@@ -0,0 +1,26 @@
+{
+    "name":    "barryvdh/reflection-docblock",
+    "type":    "library",
+    "license": "MIT",
+    "authors": [
+        {"name": "Mike van Riel", "email": "mike.vanriel@naenius.com"}
+    ],
+    "require": {
+        "php": ">=5.3.3"
+    },
+    "autoload": {
+        "psr-0": {"Barryvdh": ["src/"]}
+    },
+    "require-dev": {
+        "phpunit/phpunit": "~4.0,<4.5"
+    },
+    "suggest": {
+        "dflydev/markdown": "~1.0",
+        "erusev/parsedown": "~1.0"
+    },
+    "extra": {
+        "branch-alias": {
+            "dev-master": "2.0.x-dev"
+        }
+    }
+}

+ 864 - 0
vendor/barryvdh/reflection-docblock/composer.lock

xqd
@@ -0,0 +1,864 @@
+{
+    "_readme": [
+        "This file locks the dependencies of your project to a known state",
+        "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
+        "This file is @generated automatically"
+    ],
+    "hash": "deff4b2e029043b60cdbe896c5b18d6d",
+    "content-hash": "7b23fd3607c50c95f9d65e81785cf289",
+    "packages": [],
+    "packages-dev": [
+        {
+            "name": "doctrine/instantiator",
+            "version": "1.0.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/doctrine/instantiator.git",
+                "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
+                "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3,<8.0-DEV"
+            },
+            "require-dev": {
+                "athletic/athletic": "~0.1.8",
+                "ext-pdo": "*",
+                "ext-phar": "*",
+                "phpunit/phpunit": "~4.0",
+                "squizlabs/php_codesniffer": "~2.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Marco Pivetta",
+                    "email": "ocramius@gmail.com",
+                    "homepage": "http://ocramius.github.com/"
+                }
+            ],
+            "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
+            "homepage": "https://github.com/doctrine/instantiator",
+            "keywords": [
+                "constructor",
+                "instantiate"
+            ],
+            "time": "2015-06-14 21:17:01"
+        },
+        {
+            "name": "phpunit/php-code-coverage",
+            "version": "2.2.4",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
+                "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
+                "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.3",
+                "phpunit/php-file-iterator": "~1.3",
+                "phpunit/php-text-template": "~1.2",
+                "phpunit/php-token-stream": "~1.3",
+                "sebastian/environment": "^1.3.2",
+                "sebastian/version": "~1.0"
+            },
+            "require-dev": {
+                "ext-xdebug": ">=2.1.4",
+                "phpunit/phpunit": "~4"
+            },
+            "suggest": {
+                "ext-dom": "*",
+                "ext-xdebug": ">=2.2.1",
+                "ext-xmlwriter": "*"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.2.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sb@sebastian-bergmann.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
+            "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
+            "keywords": [
+                "coverage",
+                "testing",
+                "xunit"
+            ],
+            "time": "2015-10-06 15:47:00"
+        },
+        {
+            "name": "phpunit/php-file-iterator",
+            "version": "1.3.4",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
+                "reference": "acd690379117b042d1c8af1fafd61bde001bf6bb"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/acd690379117b042d1c8af1fafd61bde001bf6bb",
+                "reference": "acd690379117b042d1c8af1fafd61bde001bf6bb",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.3"
+            },
+            "type": "library",
+            "autoload": {
+                "classmap": [
+                    "File/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "include-path": [
+                ""
+            ],
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sb@sebastian-bergmann.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "FilterIterator implementation that filters files based on a list of suffixes.",
+            "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
+            "keywords": [
+                "filesystem",
+                "iterator"
+            ],
+            "time": "2013-10-10 15:34:57"
+        },
+        {
+            "name": "phpunit/php-text-template",
+            "version": "1.2.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/php-text-template.git",
+                "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
+                "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.3"
+            },
+            "type": "library",
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Simple template engine.",
+            "homepage": "https://github.com/sebastianbergmann/php-text-template/",
+            "keywords": [
+                "template"
+            ],
+            "time": "2015-06-21 13:50:34"
+        },
+        {
+            "name": "phpunit/php-timer",
+            "version": "1.0.8",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/php-timer.git",
+                "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/38e9124049cf1a164f1e4537caf19c99bf1eb260",
+                "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "~4|~5"
+            },
+            "type": "library",
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sb@sebastian-bergmann.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Utility class for timing",
+            "homepage": "https://github.com/sebastianbergmann/php-timer/",
+            "keywords": [
+                "timer"
+            ],
+            "time": "2016-05-12 18:03:57"
+        },
+        {
+            "name": "phpunit/php-token-stream",
+            "version": "1.4.8",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/php-token-stream.git",
+                "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
+                "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
+                "shasum": ""
+            },
+            "require": {
+                "ext-tokenizer": "*",
+                "php": ">=5.3.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "~4.2"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.4-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Wrapper around PHP's tokenizer extension.",
+            "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
+            "keywords": [
+                "tokenizer"
+            ],
+            "time": "2015-09-15 10:49:45"
+        },
+        {
+            "name": "phpunit/phpunit",
+            "version": "4.4.5",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/phpunit.git",
+                "reference": "2e8580deebb7d1ac92ac878595e6bffe01069c2a"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/2e8580deebb7d1ac92ac878595e6bffe01069c2a",
+                "reference": "2e8580deebb7d1ac92ac878595e6bffe01069c2a",
+                "shasum": ""
+            },
+            "require": {
+                "ext-dom": "*",
+                "ext-json": "*",
+                "ext-pcre": "*",
+                "ext-reflection": "*",
+                "ext-spl": "*",
+                "php": ">=5.3.3",
+                "phpunit/php-code-coverage": "~2.0",
+                "phpunit/php-file-iterator": "~1.3.2",
+                "phpunit/php-text-template": "~1.2",
+                "phpunit/php-timer": "~1.0.2",
+                "phpunit/phpunit-mock-objects": "~2.3",
+                "sebastian/comparator": "~1.0",
+                "sebastian/diff": "~1.1",
+                "sebastian/environment": "~1.1",
+                "sebastian/exporter": "~1.1",
+                "sebastian/global-state": "~1.0",
+                "sebastian/recursion-context": "~1.0",
+                "sebastian/version": "~1.0",
+                "symfony/yaml": "~2.0"
+            },
+            "suggest": {
+                "phpunit/php-invoker": "~1.1"
+            },
+            "bin": [
+                "phpunit"
+            ],
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "4.4.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "The PHP Unit Testing framework.",
+            "homepage": "https://phpunit.de/",
+            "keywords": [
+                "phpunit",
+                "testing",
+                "xunit"
+            ],
+            "time": "2015-01-27 16:06:15"
+        },
+        {
+            "name": "phpunit/phpunit-mock-objects",
+            "version": "2.3.8",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
+                "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
+                "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
+                "shasum": ""
+            },
+            "require": {
+                "doctrine/instantiator": "^1.0.2",
+                "php": ">=5.3.3",
+                "phpunit/php-text-template": "~1.2",
+                "sebastian/exporter": "~1.2"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "~4.4"
+            },
+            "suggest": {
+                "ext-soap": "*"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.3.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sb@sebastian-bergmann.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Mock Object library for PHPUnit",
+            "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
+            "keywords": [
+                "mock",
+                "xunit"
+            ],
+            "time": "2015-10-02 06:51:40"
+        },
+        {
+            "name": "sebastian/comparator",
+            "version": "1.2.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/comparator.git",
+                "reference": "937efb279bd37a375bcadf584dec0726f84dbf22"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/937efb279bd37a375bcadf584dec0726f84dbf22",
+                "reference": "937efb279bd37a375bcadf584dec0726f84dbf22",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.3",
+                "sebastian/diff": "~1.2",
+                "sebastian/exporter": "~1.2"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "~4.4"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.2.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Jeff Welch",
+                    "email": "whatthejeff@gmail.com"
+                },
+                {
+                    "name": "Volker Dusch",
+                    "email": "github@wallbash.com"
+                },
+                {
+                    "name": "Bernhard Schussek",
+                    "email": "bschussek@2bepublished.at"
+                },
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Provides the functionality to compare PHP values for equality",
+            "homepage": "http://www.github.com/sebastianbergmann/comparator",
+            "keywords": [
+                "comparator",
+                "compare",
+                "equality"
+            ],
+            "time": "2015-07-26 15:48:44"
+        },
+        {
+            "name": "sebastian/diff",
+            "version": "1.4.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/diff.git",
+                "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e",
+                "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "~4.8"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.4-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Kore Nordmann",
+                    "email": "mail@kore-nordmann.de"
+                },
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Diff implementation",
+            "homepage": "https://github.com/sebastianbergmann/diff",
+            "keywords": [
+                "diff"
+            ],
+            "time": "2015-12-08 07:14:41"
+        },
+        {
+            "name": "sebastian/environment",
+            "version": "1.3.7",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/environment.git",
+                "reference": "4e8f0da10ac5802913afc151413bc8c53b6c2716"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/4e8f0da10ac5802913afc151413bc8c53b6c2716",
+                "reference": "4e8f0da10ac5802913afc151413bc8c53b6c2716",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "~4.4"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.3.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Provides functionality to handle HHVM/PHP environments",
+            "homepage": "http://www.github.com/sebastianbergmann/environment",
+            "keywords": [
+                "Xdebug",
+                "environment",
+                "hhvm"
+            ],
+            "time": "2016-05-17 03:18:57"
+        },
+        {
+            "name": "sebastian/exporter",
+            "version": "1.2.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/exporter.git",
+                "reference": "7ae5513327cb536431847bcc0c10edba2701064e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/7ae5513327cb536431847bcc0c10edba2701064e",
+                "reference": "7ae5513327cb536431847bcc0c10edba2701064e",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.3",
+                "sebastian/recursion-context": "~1.0"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "~4.4"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.2.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Jeff Welch",
+                    "email": "whatthejeff@gmail.com"
+                },
+                {
+                    "name": "Volker Dusch",
+                    "email": "github@wallbash.com"
+                },
+                {
+                    "name": "Bernhard Schussek",
+                    "email": "bschussek@2bepublished.at"
+                },
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                },
+                {
+                    "name": "Adam Harvey",
+                    "email": "aharvey@php.net"
+                }
+            ],
+            "description": "Provides the functionality to export PHP variables for visualization",
+            "homepage": "http://www.github.com/sebastianbergmann/exporter",
+            "keywords": [
+                "export",
+                "exporter"
+            ],
+            "time": "2015-06-21 07:55:53"
+        },
+        {
+            "name": "sebastian/global-state",
+            "version": "1.1.1",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/global-state.git",
+                "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
+                "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "~4.2"
+            },
+            "suggest": {
+                "ext-uopz": "*"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                }
+            ],
+            "description": "Snapshotting of global state",
+            "homepage": "http://www.github.com/sebastianbergmann/global-state",
+            "keywords": [
+                "global state"
+            ],
+            "time": "2015-10-12 03:26:01"
+        },
+        {
+            "name": "sebastian/recursion-context",
+            "version": "1.0.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/recursion-context.git",
+                "reference": "913401df809e99e4f47b27cdd781f4a258d58791"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/913401df809e99e4f47b27cdd781f4a258d58791",
+                "reference": "913401df809e99e4f47b27cdd781f4a258d58791",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.3"
+            },
+            "require-dev": {
+                "phpunit/phpunit": "~4.4"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Jeff Welch",
+                    "email": "whatthejeff@gmail.com"
+                },
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de"
+                },
+                {
+                    "name": "Adam Harvey",
+                    "email": "aharvey@php.net"
+                }
+            ],
+            "description": "Provides functionality to recursively process PHP variables",
+            "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
+            "time": "2015-11-11 19:50:13"
+        },
+        {
+            "name": "sebastian/version",
+            "version": "1.0.6",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/sebastianbergmann/version.git",
+                "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
+                "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
+                "shasum": ""
+            },
+            "type": "library",
+            "autoload": {
+                "classmap": [
+                    "src/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "BSD-3-Clause"
+            ],
+            "authors": [
+                {
+                    "name": "Sebastian Bergmann",
+                    "email": "sebastian@phpunit.de",
+                    "role": "lead"
+                }
+            ],
+            "description": "Library that helps with managing the version number of Git-hosted PHP projects",
+            "homepage": "https://github.com/sebastianbergmann/version",
+            "time": "2015-06-21 13:59:46"
+        },
+        {
+            "name": "symfony/yaml",
+            "version": "v2.8.7",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/yaml.git",
+                "reference": "815fabf3f48c7d1df345a69d1ad1a88f59757b34"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/yaml/zipball/815fabf3f48c7d1df345a69d1ad1a88f59757b34",
+                "reference": "815fabf3f48c7d1df345a69d1ad1a88f59757b34",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=5.3.9"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "2.8-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Component\\Yaml\\": ""
+                },
+                "exclude-from-classmap": [
+                    "/Tests/"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Fabien Potencier",
+                    "email": "fabien@symfony.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony Yaml Component",
+            "homepage": "https://symfony.com",
+            "time": "2016-06-06 11:11:27"
+        }
+    ],
+    "aliases": [],
+    "minimum-stability": "stable",
+    "stability-flags": [],
+    "prefer-stable": false,
+    "prefer-lowest": false,
+    "platform": {
+        "php": ">=5.3.3"
+    },
+    "platform-dev": []
+}

+ 14 - 0
vendor/barryvdh/reflection-docblock/phpunit.xml.dist

xqd
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<phpunit colors="true" strict="true" bootstrap="vendor/autoload.php">
+  <testsuites>
+    <testsuite name="phpDocumentor\Reflection\DocBlock">
+      <directory>./tests/</directory>
+    </testsuite>
+  </testsuites>
+  <filter>
+    <whitelist>
+        <directory suffix=".php">./src/</directory>
+    </whitelist>
+  </filter>
+</phpunit>

+ 468 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock.php

xqd
@@ -0,0 +1,468 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection;
+
+use Barryvdh\Reflection\DocBlock\Tag;
+use Barryvdh\Reflection\DocBlock\Context;
+use Barryvdh\Reflection\DocBlock\Location;
+
+/**
+ * Parses the DocBlock for any structure.
+ *
+ * @author  Mike van Riel <mike.vanriel@naenius.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class DocBlock implements \Reflector
+{
+    /** @var string The opening line for this docblock. */
+    protected $short_description = '';
+
+    /**
+     * @var DocBlock\Description The actual
+     *     description for this docblock.
+     */
+    protected $long_description = null;
+
+    /**
+     * @var Tag[] An array containing all
+     *     the tags in this docblock; except inline.
+     */
+    protected $tags = array();
+
+    /** @var Context Information about the context of this DocBlock. */
+    protected $context = null;
+
+    /** @var Location Information about the location of this DocBlock. */
+    protected $location = null;
+
+    /** @var bool Is this DocBlock (the start of) a template? */
+    protected $isTemplateStart = false;
+
+    /** @var bool Does this DocBlock signify the end of a DocBlock template? */
+    protected $isTemplateEnd = false;
+
+    /**
+     * Parses the given docblock and populates the member fields.
+     *
+     * The constructor may also receive namespace information such as the
+     * current namespace and aliases. This information is used by some tags
+     * (e.g. @return, @param, etc.) to turn a relative Type into a FQCN.
+     *
+     * @param \Reflector|string $docblock A docblock comment (including
+     *     asterisks) or reflector supporting the getDocComment method.
+     * @param Context           $context  The context in which the DocBlock
+     *     occurs.
+     * @param Location          $location The location within the file that this
+     *     DocBlock occurs in.
+     *
+     * @throws \InvalidArgumentException if the given argument does not have the
+     *     getDocComment method.
+     */
+    public function __construct(
+        $docblock,
+        Context $context = null,
+        Location $location = null
+    ) {
+        if (is_object($docblock)) {
+            if (!method_exists($docblock, 'getDocComment')) {
+                throw new \InvalidArgumentException(
+                    'Invalid object passed; the given reflector must support '
+                    . 'the getDocComment method'
+                );
+            }
+
+            $docblock = $docblock->getDocComment();
+        }
+
+        $docblock = $this->cleanInput($docblock);
+
+        list($templateMarker, $short, $long, $tags) = $this->splitDocBlock($docblock);
+        $this->isTemplateStart = $templateMarker === '#@+';
+        $this->isTemplateEnd = $templateMarker === '#@-';
+        $this->short_description = $short;
+        $this->long_description = new DocBlock\Description($long, $this);
+        $this->parseTags($tags);
+
+        $this->context  = $context;
+        $this->location = $location;
+    }
+
+    /**
+     * Strips the asterisks from the DocBlock comment.
+     *
+     * @param string $comment String containing the comment text.
+     *
+     * @return string
+     */
+    protected function cleanInput($comment)
+    {
+        $comment = trim(
+            preg_replace(
+                '#[ \t]*(?:\/\*\*|\*\/|\*)?[ \t]{0,1}(.*)?#u',
+                '$1',
+                $comment
+            )
+        );
+
+        // reg ex above is not able to remove */ from a single line docblock
+        if (substr($comment, -2) == '*/') {
+            $comment = trim(substr($comment, 0, -2));
+        }
+
+        // normalize strings
+        $comment = str_replace(array("\r\n", "\r"), "\n", $comment);
+
+        return $comment;
+    }
+
+    /**
+     * Splits the DocBlock into a template marker, summary, description and block of tags.
+     *
+     * @param string $comment Comment to split into the sub-parts.
+     *
+     * @author Richard van Velzen (@_richardJ) Special thanks to Richard for the regex responsible for the split.
+     * @author Mike van Riel <me@mikevanriel.com> for extending the regex with template marker support.
+     *
+     * @return string[] containing the template marker (if any), summary, description and a string containing the tags.
+     */
+    protected function splitDocBlock($comment)
+    {
+        // Performance improvement cheat: if the first character is an @ then only tags are in this DocBlock. This
+        // method does not split tags so we return this verbatim as the fourth result (tags). This saves us the
+        // performance impact of running a regular expression
+        if (strpos($comment, '@') === 0) {
+            return array('', '', '', $comment);
+        }
+
+        // clears all extra horizontal whitespace from the line endings to prevent parsing issues
+        $comment = preg_replace('/\h*$/Sum', '', $comment);
+
+        /*
+         * Splits the docblock into a template marker, short description, long description and tags section
+         *
+         * - The template marker is empty, #@+ or #@- if the DocBlock starts with either of those (a newline may
+         *   occur after it and will be stripped).
+         * - The short description is started from the first character until a dot is encountered followed by a
+         *   newline OR two consecutive newlines (horizontal whitespace is taken into account to consider spacing
+         *   errors). This is optional.
+         * - The long description, any character until a new line is encountered followed by an @ and word
+         *   characters (a tag). This is optional.
+         * - Tags; the remaining characters
+         *
+         * Big thanks to RichardJ for contributing this Regular Expression
+         */
+        preg_match(
+            '/
+            \A
+            # 1. Extract the template marker
+            (?:(\#\@\+|\#\@\-)\n?)?
+
+            # 2. Extract the summary
+            (?:
+              (?! @\pL ) # The summary may not start with an @
+              (
+                [^\n.]+
+                (?:
+                  (?! \. \n | \n{2} )     # End summary upon a dot followed by newline or two newlines
+                  [\n.] (?! [ \t]* @\pL ) # End summary when an @ is found as first character on a new line
+                  [^\n.]+                 # Include anything else
+                )*
+                \.?
+              )?
+            )
+
+            # 3. Extract the description
+            (?:
+              \s*        # Some form of whitespace _must_ precede a description because a summary must be there
+              (?! @\pL ) # The description may not start with an @
+              (
+                [^\n]+
+                (?: \n+
+                  (?! [ \t]* @\pL ) # End description when an @ is found as first character on a new line
+                  [^\n]+            # Include anything else
+                )*
+              )
+            )?
+
+            # 4. Extract the tags (anything that follows)
+            (\s+ [\s\S]*)? # everything that follows
+            /ux',
+            $comment,
+            $matches
+        );
+        array_shift($matches);
+
+        while (count($matches) < 4) {
+            $matches[] = '';
+        }
+
+        return $matches;
+    }
+
+    /**
+     * Creates the tag objects.
+     *
+     * @param string $tags Tag block to parse.
+     *
+     * @return void
+     */
+    protected function parseTags($tags)
+    {
+        $result = array();
+        $tags = trim($tags);
+        if ('' !== $tags) {
+            if ('@' !== $tags[0]) {
+                throw new \LogicException(
+                    'A tag block started with text instead of an actual tag,'
+                    . ' this makes the tag block invalid: ' . $tags
+                );
+            }
+            foreach (explode("\n", $tags) as $tag_line) {
+                if (isset($tag_line[0]) && ($tag_line[0] === '@')) {
+                    $result[] = $tag_line;
+                } else {
+                    $result[count($result) - 1] .= "\n" . $tag_line;
+                }
+            }
+
+            // create proper Tag objects
+            foreach ($result as $key => $tag_line) {
+                $result[$key] = Tag::createInstance(trim($tag_line), $this);
+            }
+        }
+
+        $this->tags = $result;
+    }
+
+    /**
+     * Gets the text portion of the doc block.
+     * 
+     * Gets the text portion (short and long description combined) of the doc
+     * block.
+     * 
+     * @return string The text portion of the doc block.
+     */
+    public function getText()
+    {
+        $short = $this->getShortDescription();
+        $long = $this->getLongDescription()->getContents();
+
+        if ($long) {
+            return "{$short}\n\n{$long}";
+        } else {
+            return $short;
+        }
+    }
+
+    /**
+     * Set the text portion of the doc block.
+     * 
+     * Sets the text portion (short and long description combined) of the doc
+     * block.
+     *
+     * @param string $docblock The new text portion of the doc block.
+     * 
+     * @return $this This doc block.
+     */
+    public function setText($comment)
+    {
+        list(,$short, $long) = $this->splitDocBlock($comment);
+        $this->short_description = $short;
+        $this->long_description = new DocBlock\Description($long, $this);
+        return $this;
+    }
+    /**
+     * Returns the opening line or also known as short description.
+     *
+     * @return string
+     */
+    public function getShortDescription()
+    {
+        return $this->short_description;
+    }
+
+    /**
+     * Returns the full description or also known as long description.
+     *
+     * @return DocBlock\Description
+     */
+    public function getLongDescription()
+    {
+        return $this->long_description;
+    }
+
+    /**
+     * Returns whether this DocBlock is the start of a Template section.
+     *
+     * A Docblock may serve as template for a series of subsequent DocBlocks. This is indicated by a special marker
+     * (`#@+`) that is appended directly after the opening `/**` of a DocBlock.
+     *
+     * An example of such an opening is:
+     *
+     * ```
+     * /**#@+
+     *  * My DocBlock
+     *  * /
+     * ```
+     *
+     * The description and tags (not the summary!) are copied onto all subsequent DocBlocks and also applied to all
+     * elements that follow until another DocBlock is found that contains the closing marker (`#@-`).
+     *
+     * @see self::isTemplateEnd() for the check whether a closing marker was provided.
+     *
+     * @return boolean
+     */
+    public function isTemplateStart()
+    {
+        return $this->isTemplateStart;
+    }
+
+    /**
+     * Returns whether this DocBlock is the end of a Template section.
+     *
+     * @see self::isTemplateStart() for a more complete description of the Docblock Template functionality.
+     *
+     * @return boolean
+     */
+    public function isTemplateEnd()
+    {
+        return $this->isTemplateEnd;
+    }
+
+    /**
+     * Returns the current context.
+     *
+     * @return Context
+     */
+    public function getContext()
+    {
+        return $this->context;
+    }
+
+    /**
+     * Returns the current location.
+     *
+     * @return Location
+     */
+    public function getLocation()
+    {
+        return $this->location;
+    }
+
+    /**
+     * Returns the tags for this DocBlock.
+     *
+     * @return Tag[]
+     */
+    public function getTags()
+    {
+        return $this->tags;
+    }
+
+    /**
+     * Returns an array of tags matching the given name. If no tags are found
+     * an empty array is returned.
+     *
+     * @param string $name String to search by.
+     *
+     * @return Tag[]
+     */
+    public function getTagsByName($name)
+    {
+        $result = array();
+
+        /** @var Tag $tag */
+        foreach ($this->getTags() as $tag) {
+            if ($tag->getName() != $name) {
+                continue;
+            }
+
+            $result[] = $tag;
+        }
+
+        return $result;
+    }
+
+    /**
+     * Checks if a tag of a certain type is present in this DocBlock.
+     *
+     * @param string $name Tag name to check for.
+     *
+     * @return bool
+     */
+    public function hasTag($name)
+    {
+        /** @var Tag $tag */
+        foreach ($this->getTags() as $tag) {
+            if ($tag->getName() == $name) {
+                return true;
+            }
+        }
+
+        return false;
+    }
+
+    /**
+     * Appends a tag at the end of the list of tags.
+     *
+     * @param Tag $tag The tag to add.
+     *
+     * @return Tag The newly added tag.
+     *
+     * @throws \LogicException When the tag belongs to a different DocBlock.
+     */
+    public function appendTag(Tag $tag)
+    {
+        if (null === $tag->getDocBlock()) {
+            $tag->setDocBlock($this);
+        }
+
+        if ($tag->getDocBlock() === $this) {
+            $this->tags[] = $tag;
+        } else {
+            throw new \LogicException(
+                'This tag belongs to a different DocBlock object.'
+            );
+        }
+
+        return $tag;
+    }
+
+
+    /**
+     * Builds a string representation of this object.
+     *
+     * @todo determine the exact format as used by PHP Reflection and
+     *     implement it.
+     *
+     * @return string
+     * @codeCoverageIgnore Not yet implemented
+     */
+    public static function export()
+    {
+        throw new \Exception('Not yet implemented');
+    }
+
+    /**
+     * Returns the exported information (we should use the export static method
+     * BUT this throws an exception at this point).
+     *
+     * @return string
+     * @codeCoverageIgnore Not yet implemented
+     */
+    public function __toString()
+    {
+        return 'Not yet implemented';
+    }
+}

+ 154 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Context.php

xqd
@@ -0,0 +1,154 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock;
+
+/**
+ * The context in which a DocBlock occurs.
+ *
+ * @author  Vasil Rangelov <boen.robot@gmail.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class Context
+{
+    /** @var string The current namespace. */
+    protected $namespace = '';
+
+    /** @var array List of namespace aliases => Fully Qualified Namespace. */
+    protected $namespace_aliases = array();
+    
+    /** @var string Name of the structural element, within the namespace. */
+    protected $lsen = '';
+    
+    /**
+     * Cteates a new context.
+     * @param string $namespace         The namespace where this DocBlock
+     *     resides in.
+     * @param array  $namespace_aliases List of namespace aliases => Fully
+     *     Qualified Namespace.
+     * @param string $lsen              Name of the structural element, within
+     *     the namespace.
+     */
+    public function __construct(
+        $namespace = '',
+        array $namespace_aliases = array(),
+        $lsen = ''
+    ) {
+        if (!empty($namespace)) {
+            $this->setNamespace($namespace);
+        }
+        $this->setNamespaceAliases($namespace_aliases);
+        $this->setLSEN($lsen);
+    }
+
+    /**
+     * @return string The namespace where this DocBlock resides in.
+     */
+    public function getNamespace()
+    {
+        return $this->namespace;
+    }
+
+    /**
+     * @return array List of namespace aliases => Fully Qualified Namespace.
+     */
+    public function getNamespaceAliases()
+    {
+        return $this->namespace_aliases;
+    }
+    
+    /**
+     * Returns the Local Structural Element Name.
+     * 
+     * @return string Name of the structural element, within the namespace.
+     */
+    public function getLSEN()
+    {
+        return $this->lsen;
+    }
+    
+    /**
+     * Sets a new namespace.
+     * 
+     * Sets a new namespace for the context. Leading and trailing slashes are
+     * trimmed, and the keywords "global" and "default" are treated as aliases
+     * to no namespace.
+     * 
+     * @param string $namespace The new namespace to set.
+     * 
+     * @return $this
+     */
+    public function setNamespace($namespace)
+    {
+        if ('global' !== $namespace
+            && 'default' !== $namespace
+        ) {
+            // Srip leading and trailing slash
+            $this->namespace = trim((string)$namespace, '\\');
+        } else {
+            $this->namespace = '';
+        }
+        return $this;
+    }
+    
+    /**
+     * Sets the namespace aliases, replacing all previous ones.
+     * 
+     * @param array $namespace_aliases List of namespace aliases => Fully
+     *     Qualified Namespace.
+     * 
+     * @return $this
+     */
+    public function setNamespaceAliases(array $namespace_aliases)
+    {
+        $this->namespace_aliases = array();
+        foreach ($namespace_aliases as $alias => $fqnn) {
+            $this->setNamespaceAlias($alias, $fqnn);
+        }
+        return $this;
+    }
+    
+    /**
+     * Adds a namespace alias to the context.
+     * 
+     * @param string $alias The alias name (the part after "as", or the last
+     *     part of the Fully Qualified Namespace Name) to add.
+     * @param string $fqnn  The Fully Qualified Namespace Name for this alias.
+     *     Any form of leading/trailing slashes are accepted, but what will be
+     *     stored is a name, prefixed with a slash, and no trailing slash.
+     * 
+     * @return $this
+     */
+    public function setNamespaceAlias($alias, $fqnn)
+    {
+        $this->namespace_aliases[$alias] = '\\' . trim((string)$fqnn, '\\');
+        return $this;
+    }
+    
+    /**
+     * Sets a new Local Structural Element Name.
+     * 
+     * Sets a new Local Structural Element Name. A local name also contains
+     * punctuation determining the kind of structural element (e.g. trailing "("
+     * and ")" for functions and methods).
+     * 
+     * @param string $lsen The new local name of a structural element.
+     * 
+     * @return $this
+     */
+    public function setLSEN($lsen)
+    {
+        $this->lsen = (string)$lsen;
+        return $this;
+    }
+}

+ 223 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Description.php

xqd
@@ -0,0 +1,223 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock;
+
+use Barryvdh\Reflection\DocBlock;
+
+/**
+ * Parses a Description of a DocBlock or tag.
+ *
+ * @author  Mike van Riel <mike.vanriel@naenius.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class Description implements \Reflector
+{
+    /** @var string */
+    protected $contents = '';
+
+    /** @var array The contents, as an array of strings and Tag objects. */
+    protected $parsedContents = null;
+
+    /** @var DocBlock The DocBlock which this description belongs to. */
+    protected $docblock = null;
+
+    /**
+     * Populates the fields of a description.
+     *
+     * @param string   $content  The description's conetnts.
+     * @param DocBlock $docblock The DocBlock which this description belongs to.
+     */
+    public function __construct($content, DocBlock $docblock = null)
+    {
+        $this->setContent($content)->setDocBlock($docblock);
+    }
+
+    /**
+     * Gets the text of this description.
+     *
+     * @return string
+     */
+    public function getContents()
+    {
+        return $this->contents;
+    }
+
+    /**
+     * Sets the text of this description.
+     *
+     * @param string $content The new text of this description.
+     *
+     * @return $this
+     */
+    public function setContent($content)
+    {
+        $this->contents = trim($content);
+
+        $this->parsedContents = null;
+        return $this;
+    }
+
+    /**
+     * Returns the parsed text of this description.
+     *
+     * @return array An array of strings and tag objects, in the order they
+     *     occur within the description.
+     */
+    public function getParsedContents()
+    {
+        if (null === $this->parsedContents) {
+            $this->parsedContents = preg_split(
+                '/\{
+                    # "{@}" is not a valid inline tag. This ensures that
+                    # we do not treat it as one, but treat it literally.
+                    (?!@\})
+                    # We want to capture the whole tag line, but without the
+                    # inline tag delimiters.
+                    (\@
+                        # Match everything up to the next delimiter.
+                        [^{}]*
+                        # Nested inline tag content should not be captured, or
+                        # it will appear in the result separately.
+                        (?:
+                            # Match nested inline tags.
+                            (?:
+                                # Because we did not catch the tag delimiters
+                                # earlier, we must be explicit with them here.
+                                # Notice that this also matches "{}", as a way
+                                # to later introduce it as an escape sequence.
+                                \{(?1)?\}
+                                |
+                                # Make sure we match hanging "{".
+                                \{
+                            )
+                            # Match content after the nested inline tag.
+                            [^{}]*
+                        )* # If there are more inline tags, match them as well.
+                           # We use "*" since there may not be any nested inline
+                           # tags.
+                    )
+                \}/Sux',
+                $this->contents,
+                null,
+                PREG_SPLIT_DELIM_CAPTURE
+            );
+
+            $count = count($this->parsedContents);
+            for ($i=1; $i<$count; $i += 2) {
+                $this->parsedContents[$i] = Tag::createInstance(
+                    $this->parsedContents[$i],
+                    $this->docblock
+                );
+            }
+
+            //In order to allow "literal" inline tags, the otherwise invalid
+            //sequence "{@}" is changed to "@", and "{}" is changed to "}".
+            //See unit tests for examples.
+            for ($i=0; $i<$count; $i += 2) {
+                $this->parsedContents[$i] = str_replace(
+                    array('{@}', '{}'),
+                    array('@', '}'),
+                    $this->parsedContents[$i]
+                );
+            }
+        }
+        return $this->parsedContents;
+    }
+
+    /**
+     * Return a formatted variant of the Long Description using MarkDown.
+     *
+     * @todo this should become a more intelligent piece of code where the
+     *     configuration contains a setting what format long descriptions are.
+     *
+     * @codeCoverageIgnore Will be removed soon, in favor of adapters at
+     *     PhpDocumentor itself that will process text in various formats.
+     *
+     * @return string
+     */
+    public function getFormattedContents()
+    {
+        $result = $this->contents;
+
+        // if the long description contains a plain HTML <code> element, surround
+        // it with a pre element. Please note that we explicitly used str_replace
+        // and not preg_replace to gain performance
+        if (strpos($result, '<code>') !== false) {
+            $result = str_replace(
+                array('<code>', "<code>\r\n", "<code>\n", "<code>\r", '</code>'),
+                array('<pre><code>', '<code>', '<code>', '<code>', '</code></pre>'),
+                $result
+            );
+        }
+
+        if (class_exists('Parsedown')) {
+            $markdown = \Parsedown::instance();
+            $result = $markdown->parse($result);
+        } elseif (class_exists('dflydev\markdown\MarkdownExtraParser')) {
+            $markdown = new \dflydev\markdown\MarkdownExtraParser();
+            $result = $markdown->transformMarkdown($result);
+        }
+
+        return trim($result);
+    }
+
+    /**
+     * Gets the docblock this tag belongs to.
+     *
+     * @return DocBlock The docblock this description belongs to.
+     */
+    public function getDocBlock()
+    {
+        return $this->docblock;
+    }
+
+    /**
+     * Sets the docblock this tag belongs to.
+     *
+     * @param DocBlock $docblock The new docblock this description belongs to.
+     *     Setting NULL removes any association.
+     *
+     * @return $this
+     */
+    public function setDocBlock(DocBlock $docblock = null)
+    {
+        $this->docblock = $docblock;
+
+        return $this;
+    }
+
+    /**
+     * Builds a string representation of this object.
+     *
+     * @todo determine the exact format as used by PHP Reflection
+     *     and implement it.
+     *
+     * @return void
+     * @codeCoverageIgnore Not yet implemented
+     */
+    public static function export()
+    {
+        throw new \Exception('Not yet implemented');
+    }
+
+    /**
+     * Returns the long description as a string.
+     *
+     * @return string
+     */
+    public function __toString()
+    {
+        return $this->getContents();
+    }
+}

+ 76 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Location.php

xqd
@@ -0,0 +1,76 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock;
+
+/**
+ * The location a DocBlock occurs within a file.
+ *
+ * @author  Vasil Rangelov <boen.robot@gmail.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class Location
+{
+    /** @var int Line where the DocBlock text starts. */
+    protected $lineNumber = 0;
+
+    /** @var int Column where the DocBlock text starts. */
+    protected $columnNumber = 0;
+    
+    public function __construct(
+        $lineNumber = 0,
+        $columnNumber = 0
+    ) {
+        $this->setLineNumber($lineNumber)->setColumnNumber($columnNumber);
+    }
+
+    /**
+     * @return int Line where the DocBlock text starts.
+     */
+    public function getLineNumber()
+    {
+        return $this->lineNumber;
+    }
+
+    /**
+     * 
+     * @param type $lineNumber
+     * @return $this
+     */
+    public function setLineNumber($lineNumber)
+    {
+        $this->lineNumber = (int)$lineNumber;
+
+        return $this;
+    }
+
+    /**
+     * @return int Column where the DocBlock text starts.
+     */
+    public function getColumnNumber()
+    {
+        return $this->columnNumber;
+    }
+
+    /**
+     * 
+     * @param int $columnNumber
+     * @return $this
+     */
+    public function setColumnNumber($columnNumber)
+    {
+        $this->columnNumber = (int)$columnNumber;
+
+        return $this;
+    }
+}

+ 198 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Serializer.php

xqd
@@ -0,0 +1,198 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Barry vd. Heuvel <barryvdh@gmail.com>
+ * @copyright 2013 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock;
+
+use Barryvdh\Reflection\DocBlock;
+
+/**
+ * Serializes a DocBlock instance.
+ *
+ * @author  Barry vd. Heuvel <barryvdh@gmail.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class Serializer
+{
+
+    /** @var string The string to indent the comment with. */
+    protected $indentString = ' ';
+
+    /** @var int The number of times the indent string is repeated. */
+    protected $indent = 0;
+
+    /** @var bool Whether to indent the first line. */
+    protected $isFirstLineIndented = true;
+
+    /** @var int|null The max length of a line. */
+    protected $lineLength = null;
+
+    /**
+     * Create a Serializer instance.
+     *
+     * @param int      $indent          The number of times the indent string is
+     *     repeated.
+     * @param string   $indentString    The string to indent the comment with.
+     * @param bool     $indentFirstLine Whether to indent the first line.
+     * @param int|null $lineLength      The max length of a line or NULL to
+     *     disable line wrapping.
+     */
+    public function __construct(
+        $indent = 0,
+        $indentString = ' ',
+        $indentFirstLine = true,
+        $lineLength = null
+    ) {
+        $this->setIndentationString($indentString);
+        $this->setIndent($indent);
+        $this->setIsFirstLineIndented($indentFirstLine);
+        $this->setLineLength($lineLength);
+    }
+
+    /**
+     * Sets the string to indent comments with.
+     * 
+     * @param string $indentationString The string to indent comments with.
+     * 
+     * @return $this This serializer object.
+     */
+    public function setIndentationString($indentString)
+    {
+        $this->indentString = (string)$indentString;
+        return $this;
+    }
+
+    /**
+     * Gets the string to indent comments with.
+     * 
+     * @return string The indent string.
+     */
+    public function getIndentationString()
+    {
+        return $this->indentString;
+    }
+
+    /**
+     * Sets the number of indents.
+     * 
+     * @param int $indent The number of times the indent string is repeated.
+     * 
+     * @return $this This serializer object.
+     */
+    public function setIndent($indent)
+    {
+        $this->indent = (int)$indent;
+        return $this;
+    }
+
+    /**
+     * Gets the number of indents.
+     * 
+     * @return int The number of times the indent string is repeated.
+     */
+    public function getIndent()
+    {
+        return $this->indent;
+    }
+
+    /**
+     * Sets whether or not the first line should be indented.
+     * 
+     * Sets whether or not the first line (the one with the "/**") should be
+     * indented.
+     * 
+     * @param bool $indentFirstLine The new value for this setting.
+     * 
+     * @return $this This serializer object.
+     */
+    public function setIsFirstLineIndented($indentFirstLine)
+    {
+        $this->isFirstLineIndented = (bool)$indentFirstLine;
+        return $this;
+    }
+
+    /**
+     * Gets whether or not the first line should be indented.
+     * 
+     * @return bool Whether or not the first line should be indented.
+     */
+    public function isFirstLineIndented()
+    {
+        return $this->isFirstLineIndented;
+    }
+
+    /**
+     * Sets the line length.
+     * 
+     * Sets the length of each line in the serialization. Content will be
+     * wrapped within this limit.
+     * 
+     * @param int|null $lineLength The length of each line. NULL to disable line
+     *     wrapping altogether.
+     * 
+     * @return $this This serializer object.
+     */
+    public function setLineLength($lineLength)
+    {
+        $this->lineLength = null === $lineLength ? null : (int)$lineLength;
+        return $this;
+    }
+
+    /**
+     * Gets the line length.
+     * 
+     * @return int|null The length of each line or NULL if line wrapping is
+     *     disabled.
+     */
+    public function getLineLength()
+    {
+        return $this->lineLength;
+    }
+
+    /**
+     * Generate a DocBlock comment.
+     *
+     * @param DocBlock The DocBlock to serialize.
+     * 
+     * @return string The serialized doc block.
+     */
+    public function getDocComment(DocBlock $docblock)
+    {
+        $indent = str_repeat($this->indentString, $this->indent);
+        $firstIndent = $this->isFirstLineIndented ? $indent : '';
+
+        $text = $docblock->getText();
+        if ($this->lineLength) {
+            //3 === strlen(' * ')
+            $wrapLength = $this->lineLength - strlen($indent) - 3;
+            $text = wordwrap($text, $wrapLength);
+        }
+        $text = str_replace("\n", "\n{$indent} * ", $text);
+
+        $comment = "{$firstIndent}/**\n{$indent} * {$text}\n{$indent} *\n";
+
+        /** @var Tag $tag */
+        foreach ($docblock->getTags() as $tag) {
+            $tagText = (string) $tag;
+            if ($this->lineLength) {
+                $tagText = wordwrap($tagText, $wrapLength);
+            }
+            $tagText = str_replace("\n", "\n{$indent} * ", $tagText);
+
+            $comment .= "{$indent} * {$tagText}\n";
+        }
+
+        $comment .= $indent . ' */';
+
+        return $comment;
+    }
+}

+ 377 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag.php

xqd
@@ -0,0 +1,377 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock;
+
+use Barryvdh\Reflection\DocBlock;
+
+/**
+ * Parses a tag definition for a DocBlock.
+ *
+ * @author  Mike van Riel <mike.vanriel@naenius.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class Tag implements \Reflector
+{
+    /**
+     * PCRE regular expression matching a tag name.
+     */
+    const REGEX_TAGNAME = '[\w\-\_\\\\]+';
+
+    /** @var string Name of the tag */
+    protected $tag = '';
+
+    /**
+     * @var string|null Content of the tag.
+     *     When set to NULL, it means it needs to be regenerated.
+     */
+    protected $content = '';
+
+    /** @var string Description of the content of this tag */
+    protected $description = '';
+
+    /**
+     * @var array|null The description, as an array of strings and Tag objects.
+     *     When set to NULL, it means it needs to be regenerated.
+     */
+    protected $parsedDescription = null;
+
+    /** @var Location Location of the tag. */
+    protected $location = null;
+
+    /** @var DocBlock The DocBlock which this tag belongs to. */
+    protected $docblock = null;
+    
+    /**
+     * @var array An array with a tag as a key, and an FQCN to a class that
+     *     handles it as an array value. The class is expected to inherit this
+     *     class.
+     */
+    private static $tagHandlerMappings = array(
+        'author'
+            => '\Barryvdh\Reflection\DocBlock\Tag\AuthorTag',
+        'covers'
+            => '\Barryvdh\Reflection\DocBlock\Tag\CoversTag',
+        'deprecated'
+            => '\Barryvdh\Reflection\DocBlock\Tag\DeprecatedTag',
+        'example'
+            => '\Barryvdh\Reflection\DocBlock\Tag\ExampleTag',
+        'link'
+            => '\Barryvdh\Reflection\DocBlock\Tag\LinkTag',
+        'method'
+            => '\Barryvdh\Reflection\DocBlock\Tag\MethodTag',
+        'param'
+            => '\Barryvdh\Reflection\DocBlock\Tag\ParamTag',
+        'property-read'
+            => '\Barryvdh\Reflection\DocBlock\Tag\PropertyReadTag',
+        'property'
+            => '\Barryvdh\Reflection\DocBlock\Tag\PropertyTag',
+        'property-write'
+            => '\Barryvdh\Reflection\DocBlock\Tag\PropertyWriteTag',
+        'return'
+            => '\Barryvdh\Reflection\DocBlock\Tag\ReturnTag',
+        'see'
+            => '\Barryvdh\Reflection\DocBlock\Tag\SeeTag',
+        'since'
+            => '\Barryvdh\Reflection\DocBlock\Tag\SinceTag',
+        'source'
+            => '\Barryvdh\Reflection\DocBlock\Tag\SourceTag',
+        'throw'
+            => '\Barryvdh\Reflection\DocBlock\Tag\ThrowsTag',
+        'throws'
+            => '\Barryvdh\Reflection\DocBlock\Tag\ThrowsTag',
+        'uses'
+            => '\Barryvdh\Reflection\DocBlock\Tag\UsesTag',
+        'var'
+            => '\Barryvdh\Reflection\DocBlock\Tag\VarTag',
+        'version'
+            => '\Barryvdh\Reflection\DocBlock\Tag\VersionTag'
+    );
+
+    /**
+     * Factory method responsible for instantiating the correct sub type.
+     *
+     * @param string   $tag_line The text for this tag, including description.
+     * @param DocBlock $docblock The DocBlock which this tag belongs to.
+     * @param Location $location Location of the tag.
+     *
+     * @throws \InvalidArgumentException if an invalid tag line was presented.
+     *
+     * @return static A new tag object.
+     */
+    final public static function createInstance(
+        $tag_line,
+        DocBlock $docblock = null,
+        Location $location = null
+    ) {
+        if (!preg_match(
+            '/^@(' . self::REGEX_TAGNAME . ')(?:\s*([^\s].*)|$)?/us',
+            $tag_line,
+            $matches
+        )) {
+            throw new \InvalidArgumentException(
+                'Invalid tag_line detected: ' . $tag_line
+            );
+        }
+
+        $handler = __CLASS__;
+        if (isset(self::$tagHandlerMappings[$matches[1]])) {
+            $handler = self::$tagHandlerMappings[$matches[1]];
+        } elseif (isset($docblock)) {
+            $tagName = (string)new Type\Collection(
+                array($matches[1]),
+                $docblock->getContext()
+            );
+
+            if (isset(self::$tagHandlerMappings[$tagName])) {
+                $handler = self::$tagHandlerMappings[$tagName];
+            }
+        }
+
+        return new $handler(
+            $matches[1],
+            isset($matches[2]) ? $matches[2] : '',
+            $docblock,
+            $location
+        );
+    }
+
+    /**
+     * Registers a handler for tags.
+     * 
+     * Registers a handler for tags. The class specified is autoloaded if it's
+     * not available. It must inherit from this class.
+     * 
+     * @param string      $tag     Name of tag to regiser a handler for. When
+     *     registering a namespaced tag, the full name, along with a prefixing
+     *     slash MUST be provided.
+     * @param string|null $handler FQCN of handler. Specifing NULL removes the
+     *     handler for the specified tag, if any.
+     * 
+     * @return bool TRUE on success, FALSE on failure.
+     */
+    final public static function registerTagHandler($tag, $handler)
+    {
+        $tag = trim((string)$tag);
+
+        if (null === $handler) {
+            unset(self::$tagHandlerMappings[$tag]);
+            return true;
+        }
+
+        if ('' !== $tag
+            && class_exists($handler, true)
+            && is_subclass_of($handler, __CLASS__)
+            && !strpos($tag, '\\') //Accept no slash, and 1st slash at offset 0.
+        ) {
+            self::$tagHandlerMappings[$tag] = $handler;
+            return true;
+        }
+
+        return false;
+    }
+
+    /**
+     * Parses a tag and populates the member variables.
+     *
+     * @param string   $name     Name of the tag.
+     * @param string   $content  The contents of the given tag.
+     * @param DocBlock $docblock The DocBlock which this tag belongs to.
+     * @param Location $location Location of the tag.
+     */
+    public function __construct(
+        $name,
+        $content,
+        DocBlock $docblock = null,
+        Location $location = null
+    ) {
+        $this
+            ->setName($name)
+            ->setContent($content)
+            ->setDocBlock($docblock)
+            ->setLocation($location);
+    }
+
+    /**
+     * Gets the name of this tag.
+     *
+     * @return string The name of this tag.
+     */
+    public function getName()
+    {
+        return $this->tag;
+    }
+
+    /**
+     * Sets the name of this tag.
+     * 
+     * @param string $name The new name of this tag.
+     * 
+     * @return $this
+     * @throws \InvalidArgumentException When an invalid tag name is provided.
+     */
+    public function setName($name)
+    {
+        if (!preg_match('/^' . self::REGEX_TAGNAME . '$/u', $name)) {
+            throw new \InvalidArgumentException(
+                'Invalid tag name supplied: ' . $name
+            );
+        }
+
+        $this->tag = $name;
+
+        return $this;
+    }
+
+    /**
+     * Gets the content of this tag.
+     *
+     * @return string
+     */
+    public function getContent()
+    {
+        if (null === $this->content) {
+            $this->content = $this->description;
+        }
+
+        return $this->content;
+    }
+
+    /**
+     * Sets the content of this tag.
+     * 
+     * @param string $content The new content of this tag.
+     * 
+     * @return $this
+     */
+    public function setContent($content)
+    {
+        $this->setDescription($content);
+        $this->content = $content;
+
+        return $this;
+    }
+
+    /**
+     * Gets the description component of this tag.
+     *
+     * @return string
+     */
+    public function getDescription()
+    {
+        return $this->description;
+    }
+
+    /**
+     * Sets the description component of this tag.
+     * 
+     * @param string $description The new description component of this tag.
+     * 
+     * @return $this
+     */
+    public function setDescription($description)
+    {
+        $this->content = null;
+        $this->parsedDescription = null;
+        $this->description = trim($description);
+
+        return $this;
+    }
+
+    /**
+     * Gets the parsed text of this description.
+     * 
+     * @return array An array of strings and tag objects, in the order they
+     *     occur within the description.
+     */
+    public function getParsedDescription()
+    {
+        if (null === $this->parsedDescription) {
+            $description = new Description($this->description, $this->docblock);
+            $this->parsedDescription = $description->getParsedContents();
+        }
+        return $this->parsedDescription;
+    }
+
+    /**
+     * Gets the docblock this tag belongs to.
+     * 
+     * @return DocBlock The docblock this tag belongs to.
+     */
+    public function getDocBlock()
+    {
+        return $this->docblock;
+    }
+
+    /**
+     * Sets the docblock this tag belongs to.
+     * 
+     * @param DocBlock $docblock The new docblock this tag belongs to. Setting
+     *     NULL removes any association.
+     * 
+     * @return $this
+     */
+    public function setDocBlock(DocBlock $docblock = null)
+    {
+        $this->docblock = $docblock;
+
+        return $this;
+    }
+
+    /**
+     * Gets the location of the tag.
+     *
+     * @return Location The tag's location.
+     */
+    public function getLocation()
+    {
+        return $this->location;
+    }
+    
+    /**
+     * Sets the location of the tag.
+     * 
+     * @param Location $location The new location of the tag.
+     * 
+     * @return $this
+     */
+    public function setLocation(Location $location = null)
+    {
+        $this->location = $location;
+
+        return $this;
+    }
+
+    /**
+     * Builds a string representation of this object.
+     *
+     * @todo determine the exact format as used by PHP Reflection and implement it.
+     *
+     * @return void
+     * @codeCoverageIgnore Not yet implemented
+     */
+    public static function export()
+    {
+        throw new \Exception('Not yet implemented');
+    }
+
+    /**
+     * Returns the tag as a serialized string
+     *
+     * @return string
+     */
+    public function __toString()
+    {
+        return "@{$this->getName()} {$this->getContent()}";
+    }
+}

+ 131 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/AuthorTag.php

xqd
@@ -0,0 +1,131 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+use Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Reflection class for an @author tag in a Docblock.
+ *
+ * @author  Mike van Riel <mike.vanriel@naenius.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class AuthorTag extends Tag
+{
+    /**
+     * PCRE regular expression matching any valid value for the name component.
+     */
+    const REGEX_AUTHOR_NAME = '[^\<]*';
+
+    /**
+     * PCRE regular expression matching any valid value for the email component.
+     */
+    const REGEX_AUTHOR_EMAIL = '[^\>]*';
+
+    /** @var string The name of the author */
+    protected $authorName = '';
+
+    /** @var string The email of the author */
+    protected $authorEmail = '';
+    
+    public function getContent()
+    {
+        if (null === $this->content) {
+            $this->content = $this->authorName;
+            if ('' != $this->authorEmail) {
+                $this->content .= "<{$this->authorEmail}>";
+            }
+        }
+
+        return $this->content;
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    public function setContent($content)
+    {
+        parent::setContent($content);
+        if (preg_match(
+            '/^(' . self::REGEX_AUTHOR_NAME .
+            ')(\<(' . self::REGEX_AUTHOR_EMAIL .
+            ')\>)?$/u',
+            $this->description,
+            $matches
+        )) {
+            $this->authorName = trim($matches[1]);
+            if (isset($matches[3])) {
+                $this->authorEmail = trim($matches[3]);
+            }
+        }
+
+        return $this;
+    }
+
+    /**
+     * Gets the author's name.
+     * 
+     * @return string The author's name.
+     */
+    public function getAuthorName()
+    {
+        return $this->authorName;
+    }
+    
+    /**
+     * Sets the author's name.
+     * 
+     * @param string $authorName The new author name.
+     *     An invalid value will set an empty string.
+     * 
+     * @return $this
+     */
+    public function setAuthorName($authorName)
+    {
+        $this->content = null;
+        $this->authorName
+            = preg_match('/^' . self::REGEX_AUTHOR_NAME . '$/u', $authorName)
+            ? $authorName : '';
+
+        return $this;
+    }
+
+    /**
+     * Gets the author's email.
+     * 
+     * @return string The author's email.
+     */
+    public function getAuthorEmail()
+    {
+        return $this->authorEmail;
+    }
+    
+    /**
+     * Sets the author's email.
+     * 
+     * @param string $authorEmail The new author email.
+     *     An invalid value will set an empty string.
+     * 
+     * @return $this
+     */
+    public function setAuthorEmail($authorEmail)
+    {
+        $this->authorEmail
+            = preg_match('/^' . self::REGEX_AUTHOR_EMAIL . '$/u', $authorEmail)
+            ? $authorEmail : '';
+
+        $this->content = null;
+        return $this;
+    }
+}

+ 24 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/CoversTag.php

xqd
@@ -0,0 +1,24 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Reflection class for a @covers tag in a Docblock.
+ *
+ * @author  Mike van Riel <mike.vanriel@naenius.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class CoversTag extends SeeTag
+{
+}

+ 26 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/DeprecatedTag.php

xqd
@@ -0,0 +1,26 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+use Barryvdh\Reflection\DocBlock\Tag\VersionTag;
+
+/**
+ * Reflection class for a @deprecated tag in a Docblock.
+ *
+ * @author  Vasil Rangelov <boen.robot@gmail.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class DeprecatedTag extends VersionTag
+{
+}

+ 156 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/ExampleTag.php

xqd
@@ -0,0 +1,156 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+use Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Reflection class for a @example tag in a Docblock.
+ *
+ * @author  Vasil Rangelov <boen.robot@gmail.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class ExampleTag extends SourceTag
+{
+    /** 
+     * @var string Path to a file to use as an example.
+     *     May also be an absolute URI.
+     */
+    protected $filePath = '';
+
+    /**
+     * @var bool Whether the file path component represents an URI.
+     *     This determines how the file portion appears at {@link getContent()}.
+     */
+    protected $isURI = false;
+
+    /**
+     * {@inheritdoc}
+     */
+    public function getContent()
+    {
+        if (null === $this->content) {
+            $filePath = '';
+            if ($this->isURI) {
+                if (false === strpos($this->filePath, ':')) {
+                    $filePath = str_replace(
+                        '%2F',
+                        '/',
+                        rawurlencode($this->filePath)
+                    );
+                } else {
+                    $filePath = $this->filePath;
+                }
+            } else {
+                $filePath = '"' . $this->filePath . '"';
+            }
+
+            $this->content = $filePath . ' ' . parent::getContent();
+        }
+
+        return $this->content;
+    }
+    /**
+     * {@inheritdoc}
+     */
+    public function setContent($content)
+    {
+        Tag::setContent($content);
+        if (preg_match(
+            '/^
+                # File component
+                (?:
+                    # File path in quotes
+                    \"([^\"]+)\"
+                    |
+                    # File URI
+                    (\S+)
+                )
+                # Remaining content (parsed by SourceTag)
+                (?:\s+(.*))?
+            $/sux',
+            $this->description,
+            $matches
+        )) {
+            if ('' !== $matches[1]) {
+                $this->setFilePath($matches[1]);
+            } else {
+                $this->setFileURI($matches[2]);
+            }
+
+            if (isset($matches[3])) {
+                parent::setContent($matches[3]);
+            } else {
+                $this->setDescription('');
+            }
+            $this->content = $content;
+        }
+
+        return $this;
+    }
+
+    /**
+     * Returns the file path.
+     *
+     * @return string Path to a file to use as an example.
+     *     May also be an absolute URI.
+     */
+    public function getFilePath()
+    {
+        return $this->filePath;
+    }
+    
+    /**
+     * Sets the file path.
+     * 
+     * @param string $filePath The new file path to use for the example.
+     * 
+     * @return $this
+     */
+    public function setFilePath($filePath)
+    {
+        $this->isURI = false;
+        $this->filePath = trim($filePath);
+
+        $this->content = null;
+        return $this;
+    }
+    
+    /**
+     * Sets the file path as an URI.
+     * 
+     * This function is equivalent to {@link setFilePath()}, except that it
+     * convers an URI to a file path before that.
+     * 
+     * There is no getFileURI(), as {@link getFilePath()} is compatible.
+     * 
+     * @param type $uri The new file URI to use as an example.
+     */
+    public function setFileURI($uri)
+    {
+        $this->isURI = true;
+        if (false === strpos($uri, ':')) {
+            //Relative URL
+            $this->filePath = rawurldecode(
+                str_replace(array('/', '\\'), '%2F', $uri)
+            );
+        } else {
+            //Absolute URL or URI.
+            $this->filePath = $uri;
+        }
+
+        $this->content = null;
+        return $this;
+    }
+}

+ 81 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/LinkTag.php

xqd
@@ -0,0 +1,81 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Ben Selby <benmatselby@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+use Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Reflection class for a @link tag in a Docblock.
+ *
+ * @author  Ben Selby <benmatselby@gmail.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class LinkTag extends Tag
+{
+    /** @var string */
+    protected $link = '';
+
+    /**
+     * {@inheritdoc}
+     */
+    public function getContent()
+    {
+        if (null === $this->content) {
+            $this->content = "{$this->link} {$this->description}";
+        }
+
+        return $this->content;
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    public function setContent($content)
+    {
+        parent::setContent($content);
+        $parts = preg_split('/\s+/Su', $this->description, 2);
+
+        $this->link = $parts[0];
+
+        $this->setDescription(isset($parts[1]) ? $parts[1] : $parts[0]);
+
+        $this->content = $content;
+        return $this;
+    }
+
+    /**
+    * Gets the link
+    *
+    * @return string
+    */
+    public function getLink()
+    {
+        return $this->link;
+    }
+
+    /**
+    * Sets the link
+    *
+    * @param string $link The link
+    *
+    * @return $this
+    */
+    public function setLink($link)
+    {
+        $this->link = $link;
+
+        $this->content = null;
+        return $this;
+    }
+}

+ 209 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/MethodTag.php

xqd
@@ -0,0 +1,209 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+use Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Reflection class for a @method in a Docblock.
+ *
+ * @author  Mike van Riel <mike.vanriel@naenius.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class MethodTag extends ReturnTag
+{
+
+    /** @var string */
+    protected $method_name = '';
+
+    /** @var string */
+    protected $arguments = '';
+    
+    /** @var bool */
+    protected $isStatic = false;
+
+    /**
+     * {@inheritdoc}
+     */
+    public function getContent()
+    {
+        if (null === $this->content) {
+            $this->content = '';
+            if ($this->isStatic) {
+                $this->content .= 'static ';
+            }
+            $this->content .= $this->type .
+                " {$this->method_name}({$this->arguments}) " .
+                $this->description;
+        }
+
+        return $this->content;
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    public function setContent($content)
+    {
+        Tag::setContent($content);
+        // 1. none or more whitespace
+        // 2. optionally the keyword "static" followed by whitespace
+        // 3. optionally a word with underscores followed by whitespace : as
+        //    type for the return value
+        // 4. then optionally a word with underscores followed by () and
+        //    whitespace : as method name as used by phpDocumentor
+        // 5. then a word with underscores, followed by ( and any character
+        //    until a ) and whitespace : as method name with signature
+        // 6. any remaining text : as description
+        if (preg_match(
+            '/^
+                # Static keyword
+                # Declates a static method ONLY if type is also present
+                (?:
+                    (static)
+                    \s+
+                )?
+                # Return type
+                (?:
+                    ([\w\|_\\\\]+)
+                    \s+
+                )?
+                # Legacy method name (not captured)
+                (?:
+                    [\w_]+\(\)\s+
+                )?
+                # Method name
+                ([\w\|_\\\\]+)
+                # Arguments
+                \(([^\)]*)\)
+                \s*
+                # Description
+                (.*)
+            $/sux',
+            $this->description,
+            $matches
+        )) {
+            list(
+                ,
+                $static,
+                $this->type,
+                $this->method_name,
+                $this->arguments,
+                $this->description
+            ) = $matches;
+            if ($static) {
+                if (!$this->type) {
+                    $this->type = 'static';
+                } else {
+                    $this->isStatic = true;
+                }
+            } else {
+                if (!$this->type) {
+                    $this->type = 'void';
+                }
+            }
+            $this->parsedDescription = null;
+        }
+
+        return $this;
+    }
+
+    /**
+     * Sets the name of this method.
+     *
+     * @param string $method_name The name of the method.
+     *
+     * @return $this
+     */
+    public function setMethodName($method_name)
+    {
+        $this->method_name = $method_name;
+
+        $this->content = null;
+        return $this;
+    }
+
+    /**
+     * Retrieves the method name.
+     *
+     * @return string
+     */
+    public function getMethodName()
+    {
+        return $this->method_name;
+    }
+
+    /**
+     * Sets the arguments for this method.
+     *
+     * @param string $arguments A comma-separated arguments line.
+     *
+     * @return void
+     */
+    public function setArguments($arguments)
+    {
+        $this->arguments = $arguments;
+
+        $this->content = null;
+        return $this;
+    }
+
+    /**
+     * Returns an array containing each argument as array of type and name.
+     *
+     * Please note that the argument sub-array may only contain 1 element if no
+     * type was specified.
+     *
+     * @return string[]
+     */
+    public function getArguments()
+    {
+        if (empty($this->arguments)) {
+            return array();
+        }
+
+        $arguments = explode(',', $this->arguments);
+        foreach ($arguments as $key => $value) {
+            $arguments[$key] = explode(' ', trim($value));
+        }
+
+        return $arguments;
+    }
+    
+    /**
+     * Checks whether the method tag describes a static method or not.
+     * 
+     * @return bool TRUE if the method declaration is for a static method, FALSE
+     *     otherwise.
+     */
+    public function isStatic()
+    {
+        return $this->isStatic;
+    }
+    
+    /**
+     * Sets a new value for whether the method is static or not.
+     * 
+     * @param bool $isStatic The new value to set.
+     * 
+     * @return $this
+     */
+    public function setIsStatic($isStatic)
+    {
+        $this->isStatic = $isStatic;
+
+        $this->content = null;
+        return $this;
+    }
+}

+ 119 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/ParamTag.php

xqd
@@ -0,0 +1,119 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+use Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Reflection class for a @param tag in a Docblock.
+ *
+ * @author  Mike van Riel <mike.vanriel@naenius.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class ParamTag extends ReturnTag
+{
+    /** @var string */
+    protected $variableName = '';
+
+    /** @var bool determines whether this is a variadic argument */
+    protected $isVariadic = false;
+
+    /**
+     * {@inheritdoc}
+     */
+    public function getContent()
+    {
+        if (null === $this->content) {
+            $this->content
+                = "{$this->type} {$this->variableName} {$this->description}";
+        }
+        return $this->content;
+    }
+    /**
+     * {@inheritdoc}
+     */
+    public function setContent($content)
+    {
+        Tag::setContent($content);
+        $parts = preg_split(
+            '/(\s+)/Su',
+            $this->description,
+            3,
+            PREG_SPLIT_DELIM_CAPTURE
+        );
+
+        // if the first item that is encountered is not a variable; it is a type
+        if (isset($parts[0])
+            && (strlen($parts[0]) > 0)
+            && ($parts[0][0] !== '$')
+        ) {
+            $this->type = array_shift($parts);
+            array_shift($parts);
+        }
+
+        // if the next item starts with a $ or ...$ it must be the variable name
+        if (isset($parts[0])
+            && (strlen($parts[0]) > 0)
+            && ($parts[0][0] == '$' || substr($parts[0], 0, 4) === '...$')
+        ) {
+            $this->variableName = array_shift($parts);
+            array_shift($parts);
+
+            if (substr($this->variableName, 0, 3) === '...') {
+                $this->isVariadic = true;
+                $this->variableName = substr($this->variableName, 3);
+            }
+        }
+
+        $this->setDescription(implode('', $parts));
+
+        $this->content = $content;
+        return $this;
+    }
+
+    /**
+     * Returns the variable's name.
+     *
+     * @return string
+     */
+    public function getVariableName()
+    {
+        return $this->variableName;
+    }
+
+    /**
+     * Sets the variable's name.
+     *
+     * @param string $name The new name for this variable.
+     *
+     * @return $this
+     */
+    public function setVariableName($name)
+    {
+        $this->variableName = $name;
+
+        $this->content = null;
+        return $this;
+    }
+
+    /**
+     * Returns whether this tag is variadic.
+     *
+     * @return boolean
+     */
+    public function isVariadic()
+    {
+        return $this->isVariadic;
+    }
+}

+ 24 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/PropertyReadTag.php

xqd
@@ -0,0 +1,24 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Reflection class for a @property-read tag in a Docblock.
+ *
+ * @author  Mike van Riel <mike.vanriel@naenius.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class PropertyReadTag extends PropertyTag
+{
+}

+ 24 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/PropertyTag.php

xqd
@@ -0,0 +1,24 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Reflection class for a @property tag in a Docblock.
+ *
+ * @author  Mike van Riel <mike.vanriel@naenius.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class PropertyTag extends ParamTag
+{
+}

+ 24 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/PropertyWriteTag.php

xqd
@@ -0,0 +1,24 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Reflection class for a @property-write tag in a Docblock.
+ *
+ * @author  Mike van Riel <mike.vanriel@naenius.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class PropertyWriteTag extends PropertyTag
+{
+}

+ 128 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/ReturnTag.php

xqd
@@ -0,0 +1,128 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+use Barryvdh\Reflection\DocBlock\Tag;
+use Barryvdh\Reflection\DocBlock\Type\Collection;
+
+/**
+ * Reflection class for a @return tag in a Docblock.
+ *
+ * @author  Mike van Riel <mike.vanriel@naenius.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class ReturnTag extends Tag
+{
+    /** @var string The raw type component. */
+    protected $type = '';
+    
+    /** @var Collection The parsed type component. */
+    protected $types = null;
+
+    /**
+     * {@inheritdoc}
+     */
+    public function getContent()
+    {
+        if (null === $this->content) {
+            $this->content = "{$this->getType()} {$this->description}";
+        }
+
+        return $this->content;
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    public function setContent($content)
+    {
+        parent::setContent($content);
+
+        $parts = preg_split('/\s+/Su', $this->description, 2);
+
+        // any output is considered a type
+        $this->type = $parts[0];
+        $this->types = null;
+
+        $this->setDescription(isset($parts[1]) ? $parts[1] : '');
+
+        $this->content = $content;
+        return $this;
+    }
+
+    /**
+     * Returns the unique types of the variable.
+     *
+     * @return string[]
+     */
+    public function getTypes()
+    {
+        return $this->getTypesCollection()->getArrayCopy();
+    }
+
+    /**
+     * Returns the type section of the variable.
+     *
+     * @return string
+     */
+    public function getType()
+    {
+        return (string) $this->getTypesCollection();
+    }
+
+    /**
+     * Set the type section of the variable
+     *
+     * @param string $type
+     * @return $this
+     */
+    public function setType($type)
+    {
+        $this->type = $type;
+        $this->types = null;
+        $this->content = null;
+        return $this;
+    }
+
+    /**
+     * Add a type to the type section of the variable
+     *
+     * @param string $type
+     * @return $this
+     */
+    public function addType($type)
+    {
+        $this->type = $this->type . Collection::OPERATOR_OR . $type;
+        $this->types = null;
+        $this->content = null;
+        return $this;
+    }
+
+
+    /**
+     * Returns the type collection.
+     * 
+     * @return void
+     */
+    protected function getTypesCollection()
+    {
+        if (null === $this->types) {
+            $this->types = new Collection(
+                array($this->type),
+                $this->docblock ? $this->docblock->getContext() : null
+            );
+        }
+        return $this->types;
+    }
+}

+ 81 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/SeeTag.php

xqd
@@ -0,0 +1,81 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+use Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Reflection class for a @see tag in a Docblock.
+ *
+ * @author  Mike van Riel <mike.vanriel@naenius.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class SeeTag extends Tag
+{
+    /** @var string */
+    protected $refers = null;
+
+    /**
+     * {@inheritdoc}
+     */
+    public function getContent()
+    {
+        if (null === $this->content) {
+            $this->content = "{$this->refers} {$this->description}";
+        }
+        return $this->content;
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    public function setContent($content)
+    {
+        parent::setContent($content);
+        $parts = preg_split('/\s+/Su', $this->description, 2);
+
+        // any output is considered a type
+        $this->refers = $parts[0];
+
+        $this->setDescription(isset($parts[1]) ? $parts[1] : '');
+
+        $this->content = $content;
+        return $this;
+    }
+
+    /**
+     * Gets the structural element this tag refers to.
+     *
+     * @return string
+     */
+    public function getReference()
+    {
+        return $this->refers;
+    }
+
+    /**
+     * Sets the structural element this tag refers to.
+     * 
+     * @param string $refers The new type this tag refers to.
+     * 
+     * @return $this
+     */
+    public function setReference($refers)
+    {
+        $this->refers = $refers;
+
+        $this->content = null;
+        return $this;
+    }
+}

+ 26 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/SinceTag.php

xqd
@@ -0,0 +1,26 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+use Barryvdh\Reflection\DocBlock\Tag\VersionTag;
+
+/**
+ * Reflection class for a @since tag in a Docblock.
+ *
+ * @author  Vasil Rangelov <boen.robot@gmail.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class SinceTag extends VersionTag
+{
+}

+ 137 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/SourceTag.php

xqd
@@ -0,0 +1,137 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+use Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Reflection class for a @source tag in a Docblock.
+ *
+ * @author  Vasil Rangelov <boen.robot@gmail.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class SourceTag extends Tag
+{
+    /**
+     * @var int The starting line, relative to the structural element's
+     *     location.
+     */
+    protected $startingLine = 1;
+
+    /** 
+     * @var int|null The number of lines, relative to the starting line. NULL
+     *     means "to the end".
+     */
+    protected $lineCount = null;
+
+    /**
+     * {@inheritdoc}
+     */
+    public function getContent()
+    {
+        if (null === $this->content) {
+            $this->content
+                = "{$this->startingLine} {$this->lineCount} {$this->description}";
+        }
+
+        return $this->content;
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    public function setContent($content)
+    {
+        parent::setContent($content);
+        if (preg_match(
+            '/^
+                # Starting line
+                ([1-9]\d*)
+                \s*
+                # Number of lines
+                (?:
+                    ((?1))
+                    \s+
+                )?
+                # Description
+                (.*)
+            $/sux',
+            $this->description,
+            $matches
+        )) {
+            $this->startingLine = (int)$matches[1];
+            if (isset($matches[2]) && '' !== $matches[2]) {
+                $this->lineCount = (int)$matches[2];
+            }
+            $this->setDescription($matches[3]);
+            $this->content = $content;
+        }
+
+        return $this;
+    }
+
+    /**
+     * Gets the starting line.
+     *
+     * @return int The starting line, relative to the structural element's
+     *     location.
+     */
+    public function getStartingLine()
+    {
+        return $this->startingLine;
+    }
+
+    /**
+     * Sets the starting line.
+     * 
+     * @param int $startingLine The new starting line, relative to the
+     *     structural element's location.
+     * 
+     * @return $this
+     */
+    public function setStartingLine($startingLine)
+    {
+        $this->startingLine = $startingLine;
+
+        $this->content = null;
+        return $this;
+    }
+
+    /**
+     * Returns the number of lines.
+     *
+     * @return int|null The number of lines, relative to the starting line. NULL
+     *     means "to the end".
+     */
+    public function getLineCount()
+    {
+        return $this->lineCount;
+    }
+
+    /**
+     * Sets the number of lines.
+     * 
+     * @param int|null $lineCount The new number of lines, relative to the
+     *     starting line. NULL means "to the end".
+     * 
+     * @return $this
+     */
+    public function setLineCount($lineCount)
+    {
+        $this->lineCount = $lineCount;
+
+        $this->content = null;
+        return $this;
+    }
+}

+ 24 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/ThrowsTag.php

xqd
@@ -0,0 +1,24 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Reflection class for a @throws tag in a Docblock.
+ *
+ * @author  Mike van Riel <mike.vanriel@naenius.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class ThrowsTag extends ReturnTag
+{
+}

+ 24 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/UsesTag.php

xqd
@@ -0,0 +1,24 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Reflection class for a @uses tag in a Docblock.
+ *
+ * @author  Mike van Riel <mike.vanriel@naenius.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class UsesTag extends SeeTag
+{
+}

+ 24 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/VarTag.php

xqd
@@ -0,0 +1,24 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Reflection class for a @var tag in a Docblock.
+ *
+ * @author  Mike van Riel <mike.vanriel@naenius.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class VarTag extends ParamTag
+{
+}

+ 108 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Tag/VersionTag.php

xqd
@@ -0,0 +1,108 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+use Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Reflection class for a @version tag in a Docblock.
+ *
+ * @author  Vasil Rangelov <boen.robot@gmail.com>
+ * @license http://www.opensource.org/licenses/mit-license.php MIT
+ * @link    http://phpdoc.org
+ */
+class VersionTag extends Tag
+{
+    /**
+     * PCRE regular expression matching a version vector.
+     * Assumes the "x" modifier.
+     */
+    const REGEX_VECTOR = '(?:
+        # Normal release vectors.
+        \d\S*
+        |
+        # VCS version vectors. Per PHPCS, they are expected to
+        # follow the form of the VCS name, followed by ":", followed
+        # by the version vector itself.
+        # By convention, popular VCSes like CVS, SVN and GIT use "$"
+        # around the actual version vector.
+        [^\s\:]+\:\s*\$[^\$]+\$
+    )';
+
+    /** @var string The version vector. */
+    protected $version = '';
+    
+    public function getContent()
+    {
+        if (null === $this->content) {
+            $this->content = "{$this->version} {$this->description}";
+        }
+
+        return $this->content;
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    public function setContent($content)
+    {
+        parent::setContent($content);
+
+        if (preg_match(
+            '/^
+                # The version vector
+                (' . self::REGEX_VECTOR . ')
+                \s*
+                # The description
+                (.+)?
+            $/sux',
+            $this->description,
+            $matches
+        )) {
+            $this->version = $matches[1];
+            $this->setDescription(isset($matches[2]) ? $matches[2] : '');
+            $this->content = $content;
+        }
+
+        return $this;
+    }
+
+    /**
+     * Gets the version section of the tag.
+     *
+     * @return string The version section of the tag.
+     */
+    public function getVersion()
+    {
+        return $this->version;
+    }
+    
+    /**
+     * Sets the version section of the tag.
+     * 
+     * @param string $version The new version section of the tag.
+     *     An invalid value will set an empty string.
+     * 
+     * @return $this
+     */
+    public function setVersion($version)
+    {
+        $this->version
+            = preg_match('/^' . self::REGEX_VECTOR . '$/ux', $version)
+            ? $version
+            : '';
+
+        $this->content = null;
+        return $this;
+    }
+}

+ 245 - 0
vendor/barryvdh/reflection-docblock/src/Barryvdh/Reflection/DocBlock/Type/Collection.php

xqd
@@ -0,0 +1,245 @@
+<?php
+/**
+ * phpDocumentor
+ *
+ * PHP Version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Type;
+
+use Barryvdh\Reflection\DocBlock\Context;
+
+/**
+ * Collection
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+class Collection extends \ArrayObject
+{
+    /** @var string Definition of the OR operator for types */
+    const OPERATOR_OR = '|';
+
+    /** @var string Definition of the ARRAY operator for types */
+    const OPERATOR_ARRAY = '[]';
+
+    /** @var string Definition of the NAMESPACE operator in PHP */
+    const OPERATOR_NAMESPACE = '\\';
+
+    /** @var string[] List of recognized keywords */
+    protected static $keywords = array(
+        'string', 'int', 'integer', 'bool', 'boolean', 'float', 'double',
+        'object', 'mixed', 'array', 'resource', 'void', 'null', 'scalar',
+        'callback', 'callable', 'false', 'true', 'self', '$this', 'static'
+    );
+
+    /**
+     * Current invoking location.
+     *
+     * This is used to prepend to type with a relative location.
+     * May also be 'default' or 'global', in which case they are ignored.
+     *
+     * @var Context
+     */
+    protected $context = null;
+
+    /**
+     * Registers the namespace and aliases; uses that to add and expand the
+     * given types.
+     *
+     * @param string[] $types    Array containing a list of types to add to this
+     *     container.
+     * @param Context  $location The current invoking location.
+     */
+    public function __construct(
+        array $types = array(),
+        Context $context = null
+    ) {
+        $this->context = null === $context ? new Context() : $context;
+
+        foreach ($types as $type) {
+            $this->add($type);
+        }
+    }
+
+    /**
+     * Returns the current invoking location.
+     *
+     * @return Context
+     */
+    public function getContext()
+    {
+        return $this->context;
+    }
+
+    /**
+     * Adds a new type to the collection and expands it if it contains a
+     * relative namespace.
+     *
+     * If a class in the type contains a relative namespace than this collection
+     * will try to expand that into a FQCN.
+     *
+     * @param string $type A 'Type' as defined in the phpDocumentor
+     *     documentation.
+     *
+     * @throws \InvalidArgumentException if a non-string argument is passed.
+     *
+     * @see http://phpdoc.org/docs/latest/for-users/types.html for the
+     *     definition of a type.
+     *
+     * @return void
+     */
+    public function add($type)
+    {
+        if (!is_string($type)) {
+            throw new \InvalidArgumentException(
+                'A type should be represented by a string, received: '
+                .var_export($type, true)
+            );
+        }
+
+        // separate the type by the OR operator
+        $type_parts = explode(self::OPERATOR_OR, $type);
+        foreach ($type_parts as $part) {
+            $expanded_type = $this->expand($part);
+            if ($expanded_type) {
+                $this[] = $expanded_type;
+            }
+        }
+    }
+    
+    /**
+     * Returns a string representation of the collection.
+     * 
+     * @return string The resolved types across the collection, separated with
+     *     {@link self::OPERATOR_OR}.
+     */
+    public function __toString()
+    {
+        return implode(self::OPERATOR_OR, $this->getArrayCopy());
+    }
+
+    /**
+     * Analyzes the given type and returns the FQCN variant.
+     *
+     * When a type is provided this method checks whether it is not a keyword or
+     * Fully Qualified Class Name. If so it will use the given namespace and
+     * aliases to expand the type to a FQCN representation.
+     *
+     * This method only works as expected if the namespace and aliases are set;
+     * no dynamic reflection is being performed here.
+     *
+     * @param string $type The relative or absolute type.
+     *
+     * @uses getNamespace to determine with what to prefix the type name.
+     * @uses getNamespaceAliases to check whether the first part of the relative
+     *     type name should not be replaced with another namespace.
+     *
+     * @return string
+     */
+    protected function expand($type)
+    {
+        $type = trim($type);
+        if (!$type) {
+            return '';
+        }
+
+        if ($this->isTypeAnArray($type)) {
+            return $this->expand(substr($type, 0, -2)) . self::OPERATOR_ARRAY;
+        }
+
+        if ($this->isRelativeType($type) && !$this->isTypeAKeyword($type)) {
+
+            if($this->shouldBeAbsolute($type)){
+                return self::OPERATOR_NAMESPACE . $type;
+            }
+
+            $type_parts = explode(self::OPERATOR_NAMESPACE, $type, 2);
+
+            $namespace_aliases = $this->context->getNamespaceAliases();
+            // if the first segment is not an alias; prepend namespace name and
+            // return
+            if (!isset($namespace_aliases[$type_parts[0]]) &&
+                !isset($namespace_aliases[strstr($type_parts[0], '::', true)])) {
+                $namespace = $this->context->getNamespace();
+                if ('' !== $namespace) {
+                    $namespace .= self::OPERATOR_NAMESPACE;
+                }
+                return self::OPERATOR_NAMESPACE . $namespace . $type;
+            }
+
+            if (strpos($type_parts[0], '::')) {
+                $type_parts[] = strstr($type_parts[0], '::');
+                $type_parts[0] = $namespace_aliases[strstr($type_parts[0], '::', true)];
+                return implode('', $type_parts);
+            }
+
+            $type_parts[0] = $namespace_aliases[$type_parts[0]];
+            $type = implode(self::OPERATOR_NAMESPACE, $type_parts);
+        }
+
+        return $type;
+    }
+
+    /**
+     * Detects whether the given type represents an array.
+     *
+     * @param string $type A relative or absolute type as defined in the
+     *     phpDocumentor documentation.
+     *
+     * @return bool
+     */
+    protected function isTypeAnArray($type)
+    {
+        return substr($type, -2) === self::OPERATOR_ARRAY;
+    }
+
+    /**
+     * Detects whether the given type represents a PHPDoc keyword.
+     *
+     * @param string $type A relative or absolute type as defined in the
+     *     phpDocumentor documentation.
+     *
+     * @return bool
+     */
+    protected function isTypeAKeyword($type)
+    {
+        return in_array(strtolower($type), static::$keywords, true);
+    }
+
+    /**
+     * Detects whether the given type represents a relative or absolute path.
+     *
+     * This method will detect keywords as being absolute; even though they are
+     * not preceeded by a namespace separator.
+     *
+     * @param string $type A relative or absolute type as defined in the
+     *     phpDocumentor documentation.
+     *
+     * @return bool
+     */
+    protected function isRelativeType($type)
+    {
+        return ($type[0] !== self::OPERATOR_NAMESPACE)
+            || $this->isTypeAKeyword($type);
+    }
+
+    /**
+     * Detects if the type should actually be absolute, by checking if it exists.
+     *
+     * @param string $type A relative or absolute type as defined in the
+     *     phpDocumentor documentation.
+     *
+     * @return bool
+     */
+    protected function shouldBeAbsolute($type){
+        return class_exists($type);
+    }
+}

+ 245 - 0
vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/DescriptionTest.php

xqd
@@ -0,0 +1,245 @@
+<?php
+/**
+ * phpDocumentor Description Test
+ *
+ * PHP Version 5.3
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock;
+
+/**
+ * Test class for \Barryvdh\Reflection\DocBlock\Description
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+class DescriptionTest extends \PHPUnit_Framework_TestCase
+{
+    public function testConstruct()
+    {
+        $fixture = <<<LONGDESC
+This is text for a description.
+LONGDESC;
+        $object = new Description($fixture);
+        $this->assertSame($fixture, $object->getContents());
+
+        $parsedContents = $object->getParsedContents();
+        $this->assertCount(1, $parsedContents);
+        $this->assertSame($fixture, $parsedContents[0]);
+    }
+
+    public function testInlineTagParsing()
+    {
+        $fixture = <<<LONGDESC
+This is text for a {@link http://phpdoc.org/ description} that uses inline
+tags.
+LONGDESC;
+        $object = new Description($fixture);
+        $this->assertSame($fixture, $object->getContents());
+
+        $parsedContents = $object->getParsedContents();
+        $this->assertCount(3, $parsedContents);
+        $this->assertSame('This is text for a ', $parsedContents[0]);
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\Tag\LinkTag',
+            $parsedContents[1]
+        );
+        $this->assertSame(
+            ' that uses inline
+tags.',
+            $parsedContents[2]
+        );
+    }
+
+    public function testInlineTagAtStartParsing()
+    {
+        $fixture = <<<LONGDESC
+{@link http://phpdoc.org/ This} is text for a description that uses inline
+tags.
+LONGDESC;
+        $object = new Description($fixture);
+        $this->assertSame($fixture, $object->getContents());
+
+        $parsedContents = $object->getParsedContents();
+        $this->assertCount(3, $parsedContents);
+
+        $this->assertSame('', $parsedContents[0]);
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\Tag\LinkTag',
+            $parsedContents[1]
+        );
+        $this->assertSame(
+            ' is text for a description that uses inline
+tags.',
+            $parsedContents[2]
+        );
+    }
+
+    public function testNestedInlineTagParsing()
+    {
+        $fixture = <<<LONGDESC
+This is text for a description with {@internal inline tag with
+{@link http://phpdoc.org another inline tag} in it}.
+LONGDESC;
+        $object = new Description($fixture);
+        $this->assertSame($fixture, $object->getContents());
+
+        $parsedContents = $object->getParsedContents();
+        $this->assertCount(3, $parsedContents);
+
+        $this->assertSame(
+            'This is text for a description with ',
+            $parsedContents[0]
+        );
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\Tag',
+            $parsedContents[1]
+        );
+        $this->assertSame('.', $parsedContents[2]);
+
+        $parsedDescription = $parsedContents[1]->getParsedDescription();
+        $this->assertCount(3, $parsedDescription);
+        $this->assertSame("inline tag with\n", $parsedDescription[0]);
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\Tag\LinkTag',
+            $parsedDescription[1]
+        );
+        $this->assertSame(' in it', $parsedDescription[2]);
+    }
+
+    public function testLiteralOpeningDelimiter()
+    {
+        $fixture = <<<LONGDESC
+This is text for a description containing { that is literal.
+LONGDESC;
+        $object = new Description($fixture);
+        $this->assertSame($fixture, $object->getContents());
+
+        $parsedContents = $object->getParsedContents();
+        $this->assertCount(1, $parsedContents);
+        $this->assertSame($fixture, $parsedContents[0]);
+    }
+
+    public function testNestedLiteralOpeningDelimiter()
+    {
+        $fixture = <<<LONGDESC
+This is text for a description containing {@internal inline tag that has { that
+is literal}.
+LONGDESC;
+        $object = new Description($fixture);
+        $this->assertSame($fixture, $object->getContents());
+
+        $parsedContents = $object->getParsedContents();
+        $this->assertCount(3, $parsedContents);
+        $this->assertSame(
+            'This is text for a description containing ',
+            $parsedContents[0]
+        );
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\Tag',
+            $parsedContents[1]
+        );
+        $this->assertSame('.', $parsedContents[2]);
+
+        $this->assertSame(
+            array('inline tag that has { that
+is literal'),
+            $parsedContents[1]->getParsedDescription()
+        );
+    }
+
+    public function testLiteralClosingDelimiter()
+    {
+        $fixture = <<<LONGDESC
+This is text for a description with {} that is not a tag.
+LONGDESC;
+        $object = new Description($fixture);
+        $this->assertSame($fixture, $object->getContents());
+
+        $parsedContents = $object->getParsedContents();
+        $this->assertCount(1, $parsedContents);
+        $this->assertSame(
+            'This is text for a description with } that is not a tag.',
+            $parsedContents[0]
+        );
+    }
+
+    public function testNestedLiteralClosingDelimiter()
+    {
+        $fixture = <<<LONGDESC
+This is text for a description with {@internal inline tag with {} that is not an
+inline tag}.
+LONGDESC;
+        $object = new Description($fixture);
+        $this->assertSame($fixture, $object->getContents());
+
+        $parsedContents = $object->getParsedContents();
+        $this->assertCount(3, $parsedContents);
+        $this->assertSame(
+            'This is text for a description with ',
+            $parsedContents[0]
+        );
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\Tag',
+            $parsedContents[1]
+        );
+        $this->assertSame('.', $parsedContents[2]);
+
+        $this->assertSame(
+            array('inline tag with } that is not an
+inline tag'),
+            $parsedContents[1]->getParsedDescription()
+        );
+    }
+
+    public function testInlineTagEscapingSequence()
+    {
+        $fixture = <<<LONGDESC
+This is text for a description with literal {{@}link}.
+LONGDESC;
+        $object = new Description($fixture);
+        $this->assertSame($fixture, $object->getContents());
+
+        $parsedContents = $object->getParsedContents();
+        $this->assertCount(1, $parsedContents);
+        $this->assertSame(
+            'This is text for a description with literal {@link}.',
+            $parsedContents[0]
+        );
+    }
+
+    public function testNestedInlineTagEscapingSequence()
+    {
+        $fixture = <<<LONGDESC
+This is text for a description with an {@internal inline tag with literal
+{{@}link{} in it}.
+LONGDESC;
+        $object = new Description($fixture);
+        $this->assertSame($fixture, $object->getContents());
+
+        $parsedContents = $object->getParsedContents();
+        $this->assertCount(3, $parsedContents);
+        $this->assertSame(
+            'This is text for a description with an ',
+            $parsedContents[0]
+        );
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\Tag',
+            $parsedContents[1]
+        );
+        $this->assertSame('.', $parsedContents[2]);
+
+        $this->assertSame(
+            array('inline tag with literal
+{@link} in it'),
+            $parsedContents[1]->getParsedDescription()
+        );
+    }
+}

+ 86 - 0
vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/CoversTagTest.php

xqd
@@ -0,0 +1,86 @@
+<?php
+/**
+ * phpDocumentor Covers Tag Test
+ * 
+ * PHP version 5.3
+ *
+ * @author    Daniel O'Connor <daniel.oconnor@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Test class for \Barryvdh\Reflection\DocBlock\Tag\CoversTag
+ *
+ * @author    Daniel O'Connor <daniel.oconnor@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+class CoversTagTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * Test that the \Barryvdh\Reflection\DocBlock\Tag\CoversTag can create
+     * a link for the covers doc block.
+     *
+     * @param string $type
+     * @param string $content
+     * @param string $exContent
+     * @param string $exReference
+     *
+     * @covers \Barryvdh\Reflection\DocBlock\Tag\CoversTag
+     * @dataProvider provideDataForConstuctor
+     *
+     * @return void
+     */
+    public function testConstructorParesInputsIntoCorrectFields(
+        $type,
+        $content,
+        $exContent,
+        $exDescription,
+        $exReference
+    ) {
+        $tag = new CoversTag($type, $content);
+
+        $this->assertEquals($type, $tag->getName());
+        $this->assertEquals($exContent, $tag->getContent());
+        $this->assertEquals($exDescription, $tag->getDescription());
+        $this->assertEquals($exReference, $tag->getReference());
+    }
+
+    /**
+     * Data provider for testConstructorParesInputsIntoCorrectFields
+     *
+     * @return array
+     */
+    public function provideDataForConstuctor()
+    {
+        // $type, $content, $exContent, $exDescription, $exReference
+        return array(
+            array(
+                'covers',
+                'Foo::bar()',
+                'Foo::bar()',
+                '',
+                'Foo::bar()'
+            ),
+            array(
+                'covers',
+                'Foo::bar() Testing',
+                'Foo::bar() Testing',
+                'Testing',
+                'Foo::bar()',
+            ),
+            array(
+                'covers',
+                'Foo::bar() Testing comments',
+                'Foo::bar() Testing comments',
+                'Testing comments',
+                'Foo::bar()',
+            ),
+        );
+    }
+}

+ 115 - 0
vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/DeprecatedTagTest.php

xqd
@@ -0,0 +1,115 @@
+<?php
+/**
+ * phpDocumentor Deprecated Tag Test
+ * 
+ * PHP version 5.3
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Test class for \Barryvdh\Reflection\DocBlock\Tag\DeprecatedTag
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+class DeprecatedTagTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * Test that the \Barryvdh\Reflection\DocBlock\Tag\LinkTag can create
+     * a link for the @deprecated doc block.
+     *
+     * @param string $type
+     * @param string $content
+     * @param string $exContent
+     * @param string $exDescription
+     * @param string $exVersion
+     *
+     * @covers \Barryvdh\Reflection\DocBlock\Tag\DeprecatedTag
+     * @dataProvider provideDataForConstuctor
+     *
+     * @return void
+     */
+    public function testConstructorParesInputsIntoCorrectFields(
+        $type,
+        $content,
+        $exContent,
+        $exDescription,
+        $exVersion
+    ) {
+        $tag = new DeprecatedTag($type, $content);
+
+        $this->assertEquals($type, $tag->getName());
+        $this->assertEquals($exContent, $tag->getContent());
+        $this->assertEquals($exDescription, $tag->getDescription());
+        $this->assertEquals($exVersion, $tag->getVersion());
+    }
+
+    /**
+     * Data provider for testConstructorParesInputsIntoCorrectFields
+     *
+     * @return array
+     */
+    public function provideDataForConstuctor()
+    {
+        // $type, $content, $exContent, $exDescription, $exVersion
+        return array(
+            array(
+                'deprecated',
+                '1.0 First release.',
+                '1.0 First release.',
+                'First release.',
+                '1.0'
+            ),
+            array(
+                'deprecated',
+                "1.0\nFirst release.",
+                "1.0\nFirst release.",
+                'First release.',
+                '1.0'
+            ),
+            array(
+                'deprecated',
+                "1.0\nFirst\nrelease.",
+                "1.0\nFirst\nrelease.",
+                "First\nrelease.",
+                '1.0'
+            ),
+            array(
+                'deprecated',
+                'Unfinished release',
+                'Unfinished release',
+                'Unfinished release',
+                ''
+            ),
+            array(
+                'deprecated',
+                '1.0',
+                '1.0',
+                '',
+                '1.0'
+            ),
+            array(
+                'deprecated',
+                'GIT: $Id$',
+                'GIT: $Id$',
+                '',
+                'GIT: $Id$'
+            ),
+            array(
+                'deprecated',
+                'GIT: $Id$ Dev build',
+                'GIT: $Id$ Dev build',
+                'Dev build',
+                'GIT: $Id$'
+            )
+        );
+    }
+}

+ 203 - 0
vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/ExampleTagTest.php

xqd
@@ -0,0 +1,203 @@
+<?php
+/**
+ * phpDocumentor Example Tag Test
+ * 
+ * PHP version 5.3
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Test class for \Barryvdh\Reflection\DocBlock\Tag\ExampleTag
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+class ExampleTagTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * Test that the \Barryvdh\Reflection\DocBlock\Tag\SourceTag can
+     * understand the @source DocBlock.
+     *
+     * @param string $type
+     * @param string $content
+     * @param string $exContent
+     * @param string $exStartingLine
+     * @param string $exLineCount
+     * @param string $exFilepath
+     *
+     * @covers \Barryvdh\Reflection\DocBlock\Tag\ExampleTag
+     * @dataProvider provideDataForConstuctor
+     *
+     * @return void
+     */
+    public function testConstructorParesInputsIntoCorrectFields(
+        $type,
+        $content,
+        $exContent,
+        $exDescription,
+        $exStartingLine,
+        $exLineCount,
+        $exFilePath
+    ) {
+        $tag = new ExampleTag($type, $content);
+
+        $this->assertEquals($type, $tag->getName());
+        $this->assertEquals($exContent, $tag->getContent());
+        $this->assertEquals($exDescription, $tag->getDescription());
+        $this->assertEquals($exStartingLine, $tag->getStartingLine());
+        $this->assertEquals($exLineCount, $tag->getLineCount());
+        $this->assertEquals($exFilePath, $tag->getFilePath());
+    }
+
+    /**
+     * Data provider for testConstructorParesInputsIntoCorrectFields
+     *
+     * @return array
+     */
+    public function provideDataForConstuctor()
+    {
+        // $type,
+        // $content,
+        // $exContent,
+        // $exDescription,
+        // $exStartingLine,
+        // $exLineCount,
+        // $exFilePath
+        return array(
+            array(
+                'example',
+                'file.php',
+                'file.php',
+                '',
+                1,
+                null,
+                'file.php'
+            ),
+            array(
+                'example',
+                'Testing comments',
+                'Testing comments',
+                'comments',
+                1,
+                null,
+                'Testing'
+            ),
+            array(
+                'example',
+                'file.php 2 Testing',
+                'file.php 2 Testing',
+                'Testing',
+                2,
+                null,
+                'file.php'
+            ),
+            array(
+                'example',
+                'file.php 2 3 Testing comments',
+                'file.php 2 3 Testing comments',
+                'Testing comments',
+                2,
+                3,
+                'file.php'
+            ),
+            array(
+                'example',
+                'file.php 2 -1 Testing comments',
+                'file.php 2 -1 Testing comments',
+                '-1 Testing comments',
+                2,
+                null,
+                'file.php'
+            ),
+            array(
+                'example',
+                'file.php -1 1 Testing comments',
+                'file.php -1 1 Testing comments',
+                '-1 1 Testing comments',
+                1,
+                null,
+                'file.php'
+            ),
+            array(
+                'example',
+                '"file with spaces.php" Testing comments',
+                '"file with spaces.php" Testing comments',
+                'Testing comments',
+                1,
+                null,
+                'file with spaces.php'
+            ),
+            array(
+                'example',
+                '"file with spaces.php" 2 Testing comments',
+                '"file with spaces.php" 2 Testing comments',
+                'Testing comments',
+                2,
+                null,
+                'file with spaces.php'
+            ),
+            array(
+                'example',
+                '"file with spaces.php" 2 3 Testing comments',
+                '"file with spaces.php" 2 3 Testing comments',
+                'Testing comments',
+                2,
+                3,
+                'file with spaces.php'
+            ),
+            array(
+                'example',
+                '"file with spaces.php" 2 -3 Testing comments',
+                '"file with spaces.php" 2 -3 Testing comments',
+                '-3 Testing comments',
+                2,
+                null,
+                'file with spaces.php'
+            ),
+            array(
+                'example',
+                '"file with spaces.php" -2 3 Testing comments',
+                '"file with spaces.php" -2 3 Testing comments',
+                '-2 3 Testing comments',
+                1,
+                null,
+                'file with spaces.php'
+            ),
+            array(
+                'example',
+                'file%20with%20spaces.php Testing comments',
+                'file%20with%20spaces.php Testing comments',
+                'Testing comments',
+                1,
+                null,
+                'file with spaces.php'
+            ),
+            array(
+                'example',
+                'folder/file%20with%20spaces.php Testing comments',
+                'folder/file%20with%20spaces.php Testing comments',
+                'Testing comments',
+                1,
+                null,
+                'folder/file with spaces.php'
+            ),
+            array(
+                'example',
+                'http://example.com/file%20with%20spaces.php Testing comments',
+                'http://example.com/file%20with%20spaces.php Testing comments',
+                'Testing comments',
+                1,
+                null,
+                'http://example.com/file%20with%20spaces.php'
+            )
+        );
+    }
+}

+ 87 - 0
vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/LinkTagTest.php

xqd
@@ -0,0 +1,87 @@
+<?php
+/**
+ * phpDocumentor Link Tag Test
+ * 
+ * PHP version 5.3
+ *
+ * @author    Ben Selby <benmatselby@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Test class for \Barryvdh\Reflection\DocBlock\Tag\LinkTag
+ *
+ * @author    Ben Selby <benmatselby@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+class LinkTagTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * Test that the \Barryvdh\Reflection\DocBlock\Tag\LinkTag can create
+     * a link for the @link doc block.
+     *
+     * @param string $type
+     * @param string $content
+     * @param string $exContent
+     * @param string $exDescription
+     * @param string $exLink
+     *
+     * @covers \Barryvdh\Reflection\DocBlock\Tag\LinkTag
+     * @dataProvider provideDataForConstuctor
+     *
+     * @return void
+     */
+    public function testConstructorParesInputsIntoCorrectFields(
+        $type,
+        $content,
+        $exContent,
+        $exDescription,
+        $exLink
+    ) {
+        $tag = new LinkTag($type, $content);
+
+        $this->assertEquals($type, $tag->getName());
+        $this->assertEquals($exContent, $tag->getContent());
+        $this->assertEquals($exDescription, $tag->getDescription());
+        $this->assertEquals($exLink, $tag->getLink());
+    }
+
+    /**
+     * Data provider for testConstructorParesInputsIntoCorrectFields
+     *
+     * @return array
+     */
+    public function provideDataForConstuctor()
+    {
+        // $type, $content, $exContent, $exDescription, $exLink
+        return array(
+            array(
+                'link',
+                'http://www.phpdoc.org/',
+                'http://www.phpdoc.org/',
+                'http://www.phpdoc.org/',
+                'http://www.phpdoc.org/'
+            ),
+            array(
+                'link',
+                'http://www.phpdoc.org/ Testing',
+                'http://www.phpdoc.org/ Testing',
+                'Testing',
+                'http://www.phpdoc.org/'
+            ),
+            array(
+                'link',
+                'http://www.phpdoc.org/ Testing comments',
+                'http://www.phpdoc.org/ Testing comments',
+                'Testing comments',
+                'http://www.phpdoc.org/'
+            ),
+        );
+    }
+}

+ 146 - 0
vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/MethodTagTest.php

xqd
@@ -0,0 +1,146 @@
+<?php
+/**
+ * phpDocumentor Method Tag Test
+ * 
+ * PHP version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Test class for \Barryvdh\Reflection\DocBlock\Tag\MethodTag
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+class MethodTagTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * @param string $signature       The signature to test.
+     * @param bool   $valid           Whether the given signature is expected to
+     *     be valid.
+     * @param string $expected_name   The method name that is expected from this
+     *     signature.
+     * @param string $expected_return The return type that is expected from this
+     *     signature.
+     * @param bool   $paramCount      Number of parameters in the signature.
+     * @param string $description     The short description mentioned in the
+     *     signature.
+     * 
+     * @covers \Barryvdh\Reflection\DocBlock\Tag\MethodTag
+     * @dataProvider getTestSignatures
+     *
+     * @return void
+     */
+    public function testConstruct(
+        $signature,
+        $valid,
+        $expected_name,
+        $expected_return,
+        $expected_isStatic,
+        $paramCount,
+        $description
+    ) {
+        ob_start();
+        $tag = new MethodTag('method', $signature);
+        $stdout = ob_get_clean();
+
+        $this->assertSame(
+            $valid,
+            empty($stdout),
+            'No error should have been output if the signature is valid'
+        );
+
+        if (!$valid) {
+            return;
+        }
+
+        $this->assertEquals($expected_name, $tag->getMethodName());
+        $this->assertEquals($expected_return, $tag->getType());
+        $this->assertEquals($description, $tag->getDescription());
+        $this->assertEquals($expected_isStatic, $tag->isStatic());
+        $this->assertCount($paramCount, $tag->getArguments());
+    }
+
+    public function getTestSignatures()
+    {
+        return array(
+            // TODO: Verify this case
+//            array(
+//                'foo',
+//                false, 'foo', '', false, 0, ''
+//            ),
+            array(
+                'foo()',
+                true, 'foo', 'void', false, 0, ''
+            ),
+            array(
+                'foo() description',
+                true, 'foo', 'void', false, 0, 'description'
+            ),
+            array(
+                'int foo()',
+                true, 'foo', 'int', false, 0, ''
+            ),
+            array(
+                'int foo() description',
+                true, 'foo', 'int', false, 0, 'description'
+            ),
+            array(
+                'int foo($a, $b)',
+                true, 'foo', 'int', false, 2, ''
+            ),
+            array(
+                'int foo() foo(int $a, int $b)',
+                true, 'foo', 'int', false, 2, ''
+            ),
+            array(
+                'int foo(int $a, int $b)',
+                true, 'foo', 'int', false, 2, ''
+            ),
+            array(
+                'null|int foo(int $a, int $b)',
+                true, 'foo', 'null|int', false, 2, ''
+            ),
+            array(
+                'int foo(null|int $a, int $b)',
+                true, 'foo', 'int', false, 2, ''
+            ),
+            array(
+                '\Exception foo() foo(Exception $a, Exception $b)',
+                true, 'foo', '\Exception', false, 2, ''
+            ),
+            array(
+                'int foo() foo(Exception $a, Exception $b) description',
+                true, 'foo', 'int', false, 2, 'description'
+            ),
+            array(
+                'int foo() foo(\Exception $a, \Exception $b) description',
+                true, 'foo', 'int', false, 2, 'description'
+            ),
+            array(
+                'void()',
+                true, 'void', 'void', false, 0, ''
+            ),
+            array(
+                'static foo()',
+                true, 'foo', 'static', false, 0, ''
+            ),
+            array(
+                'static void foo()',
+                true, 'foo', 'void', true, 0, ''
+            ),
+            array(
+                'static static foo()',
+                true, 'foo', 'static', true, 0, ''
+            )
+        );
+    }
+}

+ 118 - 0
vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/ParamTagTest.php

xqd
@@ -0,0 +1,118 @@
+<?php
+/**
+ * phpDocumentor Param tag test.
+ * 
+ * PHP version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Test class for \Barryvdh\Reflection\DocBlock\ParamTag
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+class ParamTagTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * Test that the \Barryvdh\Reflection\DocBlock\Tag\ParamTag can
+     * understand the @param DocBlock.
+     *
+     * @param string $type
+     * @param string $content
+     * @param string $extractedType
+     * @param string $extractedTypes
+     * @param string $extractedVarName
+     * @param string $extractedDescription
+     *
+     * @covers \Barryvdh\Reflection\DocBlock\Tag\ParamTag
+     * @dataProvider provideDataForConstructor
+     *
+     * @return void
+     */
+    public function testConstructorParsesInputsIntoCorrectFields(
+        $type,
+        $content,
+        $extractedType,
+        $extractedTypes,
+        $extractedVarName,
+        $extractedDescription
+    ) {
+        $tag = new ParamTag($type, $content);
+
+        $this->assertEquals($type, $tag->getName());
+        $this->assertEquals($extractedType, $tag->getType());
+        $this->assertEquals($extractedTypes, $tag->getTypes());
+        $this->assertEquals($extractedVarName, $tag->getVariableName());
+        $this->assertEquals($extractedDescription, $tag->getDescription());
+    }
+
+    /**
+     * Data provider for testConstructorParsesInputsIntoCorrectFields()
+     *
+     * @return array
+     */
+    public function provideDataForConstructor()
+    {
+        return array(
+            array('param', 'int', 'int', array('int'), '', ''),
+            array('param', '$bob', '', array(), '$bob', ''),
+            array(
+                'param',
+                'int Number of bobs',
+                'int',
+                array('int'),
+                '',
+                'Number of bobs'
+            ),
+            array(
+                'param',
+                'int $bob',
+                'int',
+                array('int'),
+                '$bob',
+                ''
+            ),
+            array(
+                'param',
+                'int $bob Number of bobs',
+                'int',
+                array('int'),
+                '$bob',
+                'Number of bobs'
+            ),
+            array(
+                'param',
+                "int Description \n on multiple lines",
+                'int',
+                array('int'),
+                '',
+                "Description \n on multiple lines"
+            ),
+            array(
+                'param',
+                "int \n\$bob Variable name on a new line",
+                'int',
+                array('int'),
+                '$bob',
+                "Variable name on a new line"
+            ),
+            array(
+                'param',
+                "\nint \$bob Type on a new line",
+                'int',
+                array('int'),
+                '$bob',
+                "Type on a new line"
+            )
+        );
+    }
+}

+ 102 - 0
vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/ReturnTagTest.php

xqd
@@ -0,0 +1,102 @@
+<?php
+/**
+ * phpDocumentor Return tag test.
+ * 
+ * PHP version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Test class for \Barryvdh\Reflection\DocBlock\ReturnTag
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+class ReturnTagTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * Test that the \Barryvdh\Reflection\DocBlock\Tag\ReturnTag can
+     * understand the @return DocBlock.
+     *
+     * @param string $type
+     * @param string $content
+     * @param string $extractedType
+     * @param string $extractedTypes
+     * @param string $extractedDescription
+     *
+     * @covers \Barryvdh\Reflection\DocBlock\Tag\ReturnTag
+     * @dataProvider provideDataForConstructor
+     *
+     * @return void
+     */
+    public function testConstructorParsesInputsIntoCorrectFields(
+        $type,
+        $content,
+        $extractedType,
+        $extractedTypes,
+        $extractedDescription
+    ) {
+        $tag = new ReturnTag($type, $content);
+
+        $this->assertEquals($type, $tag->getName());
+        $this->assertEquals($extractedType, $tag->getType());
+        $this->assertEquals($extractedTypes, $tag->getTypes());
+        $this->assertEquals($extractedDescription, $tag->getDescription());
+    }
+
+    /**
+     * Data provider for testConstructorParsesInputsIntoCorrectFields()
+     *
+     * @return array
+     */
+    public function provideDataForConstructor()
+    {
+        return array(
+            array('return', '', '', array(), ''),
+            array('return', 'int', 'int', array('int'), ''),
+            array(
+                'return',
+                'int Number of Bobs',
+                'int',
+                array('int'),
+                'Number of Bobs'
+            ),
+            array(
+                'return',
+                'int|double Number of Bobs',
+                'int|double',
+                array('int', 'double'),
+                'Number of Bobs'
+            ),
+            array(
+                'return',
+                "int Number of \n Bobs",
+                'int',
+                array('int'),
+                "Number of \n Bobs"
+            ),
+            array(
+                'return',
+                " int Number of Bobs",
+                'int',
+                array('int'),
+                "Number of Bobs"
+            ),
+            array(
+                'return',
+                "int\nNumber of Bobs",
+                'int',
+                array('int'),
+                "Number of Bobs"
+            )
+        );
+    }
+}

+ 86 - 0
vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/SeeTagTest.php

xqd
@@ -0,0 +1,86 @@
+<?php
+/**
+ * phpDocumentor See Tag Test
+ * 
+ * PHP version 5.3
+ *
+ * @author    Daniel O'Connor <daniel.oconnor@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Test class for \Barryvdh\Reflection\DocBlock\Tag\SeeTag
+ *
+ * @author    Daniel O'Connor <daniel.oconnor@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+class SeeTagTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * Test that the phpDocumentor_Reflection_DocBlock_Tag_See can create a link
+     * for the @see doc block.
+     *
+     * @param string $type
+     * @param string $content
+     * @param string $exContent
+     * @param string $exReference
+     *
+     * @covers \Barryvdh\Reflection\DocBlock\Tag\SeeTag
+     * @dataProvider provideDataForConstuctor
+     *
+     * @return void
+     */
+    public function testConstructorParesInputsIntoCorrectFields(
+        $type,
+        $content,
+        $exContent,
+        $exDescription,
+        $exReference
+    ) {
+        $tag = new SeeTag($type, $content);
+
+        $this->assertEquals($type, $tag->getName());
+        $this->assertEquals($exContent, $tag->getContent());
+        $this->assertEquals($exDescription, $tag->getDescription());
+        $this->assertEquals($exReference, $tag->getReference());
+    }
+
+    /**
+     * Data provider for testConstructorParesInputsIntoCorrectFields
+     *
+     * @return array
+     */
+    public function provideDataForConstuctor()
+    {
+        // $type, $content, $exContent, $exDescription, $exReference
+        return array(
+            array(
+                'see',
+                'Foo::bar()',
+                'Foo::bar()',
+                '',
+                'Foo::bar()'
+            ),
+            array(
+                'see',
+                'Foo::bar() Testing',
+                'Foo::bar() Testing',
+                'Testing',
+                'Foo::bar()',
+            ),
+            array(
+                'see',
+                'Foo::bar() Testing comments',
+                'Foo::bar() Testing comments',
+                'Testing comments',
+                'Foo::bar()',
+            ),
+        );
+    }
+}

+ 115 - 0
vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/SinceTagTest.php

xqd
@@ -0,0 +1,115 @@
+<?php
+/**
+ * phpDocumentor Since Tag Test
+ * 
+ * PHP version 5.3
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Test class for \Barryvdh\Reflection\DocBlock\Tag\SinceTag
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+class SinceTagTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * Test that the \Barryvdh\Reflection\DocBlock\Tag\LinkTag can create
+     * a link for the @since doc block.
+     *
+     * @param string $type
+     * @param string $content
+     * @param string $exContent
+     * @param string $exDescription
+     * @param string $exVersion
+     *
+     * @covers \Barryvdh\Reflection\DocBlock\Tag\SinceTag
+     * @dataProvider provideDataForConstuctor
+     *
+     * @return void
+     */
+    public function testConstructorParesInputsIntoCorrectFields(
+        $type,
+        $content,
+        $exContent,
+        $exDescription,
+        $exVersion
+    ) {
+        $tag = new SinceTag($type, $content);
+
+        $this->assertEquals($type, $tag->getName());
+        $this->assertEquals($exContent, $tag->getContent());
+        $this->assertEquals($exDescription, $tag->getDescription());
+        $this->assertEquals($exVersion, $tag->getVersion());
+    }
+
+    /**
+     * Data provider for testConstructorParesInputsIntoCorrectFields
+     *
+     * @return array
+     */
+    public function provideDataForConstuctor()
+    {
+        // $type, $content, $exContent, $exDescription, $exVersion
+        return array(
+            array(
+                'since',
+                '1.0 First release.',
+                '1.0 First release.',
+                'First release.',
+                '1.0'
+            ),
+            array(
+                'since',
+                "1.0\nFirst release.",
+                "1.0\nFirst release.",
+                'First release.',
+                '1.0'
+            ),
+            array(
+                'since',
+                "1.0\nFirst\nrelease.",
+                "1.0\nFirst\nrelease.",
+                "First\nrelease.",
+                '1.0'
+            ),
+            array(
+                'since',
+                'Unfinished release',
+                'Unfinished release',
+                'Unfinished release',
+                ''
+            ),
+            array(
+                'since',
+                '1.0',
+                '1.0',
+                '',
+                '1.0'
+            ),
+            array(
+                'since',
+                'GIT: $Id$',
+                'GIT: $Id$',
+                '',
+                'GIT: $Id$'
+            ),
+            array(
+                'since',
+                'GIT: $Id$ Dev build',
+                'GIT: $Id$ Dev build',
+                'Dev build',
+                'GIT: $Id$'
+            )
+        );
+    }
+}

+ 116 - 0
vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/SourceTagTest.php

xqd
@@ -0,0 +1,116 @@
+<?php
+/**
+ * phpDocumentor Source Tag Test
+ * 
+ * PHP version 5.3
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Test class for \Barryvdh\Reflection\DocBlock\Tag\SourceTag
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+class SourceTagTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * Test that the \Barryvdh\Reflection\DocBlock\Tag\SourceTag can
+     * understand the @source DocBlock.
+     *
+     * @param string $type
+     * @param string $content
+     * @param string $exContent
+     * @param string $exStartingLine
+     * @param string $exLineCount
+     *
+     * @covers \Barryvdh\Reflection\DocBlock\Tag\SourceTag
+     * @dataProvider provideDataForConstuctor
+     *
+     * @return void
+     */
+    public function testConstructorParesInputsIntoCorrectFields(
+        $type,
+        $content,
+        $exContent,
+        $exDescription,
+        $exStartingLine,
+        $exLineCount
+    ) {
+        $tag = new SourceTag($type, $content);
+
+        $this->assertEquals($type, $tag->getName());
+        $this->assertEquals($exContent, $tag->getContent());
+        $this->assertEquals($exDescription, $tag->getDescription());
+        $this->assertEquals($exStartingLine, $tag->getStartingLine());
+        $this->assertEquals($exLineCount, $tag->getLineCount());
+    }
+
+    /**
+     * Data provider for testConstructorParesInputsIntoCorrectFields
+     *
+     * @return array
+     */
+    public function provideDataForConstuctor()
+    {
+        // $type, $content, $exContent, $exDescription, $exStartingLine, $exLineCount
+        return array(
+            array(
+                'source',
+                '2',
+                '2',
+                '',
+                2,
+                null
+            ),
+            array(
+                'source',
+                'Testing',
+                'Testing',
+                'Testing',
+                1,
+                null
+            ),
+            array(
+                'source',
+                '2 Testing',
+                '2 Testing',
+                'Testing',
+                2,
+                null
+            ),
+            array(
+                'source',
+                '2 3 Testing comments',
+                '2 3 Testing comments',
+                'Testing comments',
+                2,
+                3
+            ),
+            array(
+                'source',
+                '2 -1 Testing comments',
+                '2 -1 Testing comments',
+                '-1 Testing comments',
+                2,
+                null
+            ),
+            array(
+                'source',
+                '-1 1 Testing comments',
+                '-1 1 Testing comments',
+                '-1 1 Testing comments',
+                1,
+                null
+            )
+        );
+    }
+}

+ 102 - 0
vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/ThrowsTagTest.php

xqd
@@ -0,0 +1,102 @@
+<?php
+/**
+ * phpDocumentor Throws tag test.
+ * 
+ * PHP version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Test class for \Barryvdh\Reflection\DocBlock\ThrowsTag
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+class ThrowsTagTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * Test that the \Barryvdh\Reflection\DocBlock\Tag\ThrowsTag can
+     * understand the @throws DocBlock.
+     *
+     * @param string $type
+     * @param string $content
+     * @param string $extractedType
+     * @param string $extractedTypes
+     * @param string $extractedDescription
+     *
+     * @covers \Barryvdh\Reflection\DocBlock\Tag\ThrowsTag
+     * @dataProvider provideDataForConstructor
+     *
+     * @return void
+     */
+    public function testConstructorParsesInputsIntoCorrectFields(
+        $type,
+        $content,
+        $extractedType,
+        $extractedTypes,
+        $extractedDescription
+    ) {
+        $tag = new ThrowsTag($type, $content);
+
+        $this->assertEquals($type, $tag->getName());
+        $this->assertEquals($extractedType, $tag->getType());
+        $this->assertEquals($extractedTypes, $tag->getTypes());
+        $this->assertEquals($extractedDescription, $tag->getDescription());
+    }
+
+    /**
+     * Data provider for testConstructorParsesInputsIntoCorrectFields()
+     *
+     * @return array
+     */
+    public function provideDataForConstructor()
+    {
+        return array(
+            array('throws', '', '', array(), ''),
+            array('throws', 'int', 'int', array('int'), ''),
+            array(
+                'throws',
+                'int Number of Bobs',
+                'int',
+                array('int'),
+                'Number of Bobs'
+            ),
+            array(
+                'throws',
+                'int|double Number of Bobs',
+                'int|double',
+                array('int', 'double'),
+                'Number of Bobs'
+            ),
+            array(
+                'throws',
+                "int Number of \n Bobs",
+                'int',
+                array('int'),
+                "Number of \n Bobs"
+            ),
+            array(
+                'throws',
+                " int Number of Bobs",
+                'int',
+                array('int'),
+                "Number of Bobs"
+            ),
+            array(
+                'throws',
+                "int\nNumber of Bobs",
+                'int',
+                array('int'),
+                "Number of Bobs"
+            )
+        );
+    }
+}

+ 86 - 0
vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/UsesTagTest.php

xqd
@@ -0,0 +1,86 @@
+<?php
+/**
+ * phpDocumentor Uses Tag Test
+ * 
+ * PHP version 5.3
+ *
+ * @author    Daniel O'Connor <daniel.oconnor@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Test class for \Barryvdh\Reflection\DocBlock\Tag\UsesTag
+ *
+ * @author    Daniel O'Connor <daniel.oconnor@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+class UsesTagTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * Test that the \Barryvdh\Reflection\DocBlock\Tag\UsesTag can create
+     * a link for the @uses doc block.
+     *
+     * @param string $type
+     * @param string $content
+     * @param string $exContent
+     * @param string $exReference
+     *
+     * @covers \Barryvdh\Reflection\DocBlock\Tag\UsesTag
+     * @dataProvider provideDataForConstuctor
+     *
+     * @return void
+     */
+    public function testConstructorParesInputsIntoCorrectFields(
+        $type,
+        $content,
+        $exContent,
+        $exDescription,
+        $exReference
+    ) {
+        $tag = new UsesTag($type, $content);
+
+        $this->assertEquals($type, $tag->getName());
+        $this->assertEquals($exContent, $tag->getContent());
+        $this->assertEquals($exDescription, $tag->getDescription());
+        $this->assertEquals($exReference, $tag->getReference());
+    }
+
+    /**
+     * Data provider for testConstructorParesInputsIntoCorrectFields
+     *
+     * @return array
+     */
+    public function provideDataForConstuctor()
+    {
+        // $type, $content, $exContent, $exDescription, $exReference
+        return array(
+            array(
+                'uses',
+                'Foo::bar()',
+                'Foo::bar()',
+                '',
+                'Foo::bar()'
+            ),
+            array(
+                'uses',
+                'Foo::bar() Testing',
+                'Foo::bar() Testing',
+                'Testing',
+                'Foo::bar()',
+            ),
+            array(
+                'uses',
+                'Foo::bar() Testing comments',
+                'Foo::bar() Testing comments',
+                'Testing comments',
+                'Foo::bar()',
+            ),
+        );
+    }
+}

+ 94 - 0
vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/VarTagTest.php

xqd
@@ -0,0 +1,94 @@
+<?php
+/**
+ * phpDocumentor Var Tag Test
+ * 
+ * PHP version 5.3
+ *
+ * @author    Daniel O'Connor <daniel.oconnor@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Test class for \Barryvdh\Reflection\DocBlock\Tag\VarTag
+ *
+ * @author    Daniel O'Connor <daniel.oconnor@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+class VarTagTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * Test that the \Barryvdh\Reflection\DocBlock\Tag\VarTag can
+     * understand the @var doc block.
+     *
+     * @param string $type
+     * @param string $content
+     * @param string $exType
+     * @param string $exVariable
+     * @param string $exDescription
+     *
+     * @covers \Barryvdh\Reflection\DocBlock\Tag\VarTag
+     * @dataProvider provideDataForConstuctor
+     *
+     * @return void
+     */
+    public function testConstructorParesInputsIntoCorrectFields(
+        $type,
+        $content,
+        $exType,
+        $exVariable,
+        $exDescription
+    ) {
+        $tag = new VarTag($type, $content);
+
+        $this->assertEquals($type, $tag->getName());
+        $this->assertEquals($exType, $tag->getType());
+        $this->assertEquals($exVariable, $tag->getVariableName());
+        $this->assertEquals($exDescription, $tag->getDescription());
+    }
+
+    /**
+     * Data provider for testConstructorParesInputsIntoCorrectFields
+     *
+     * @return array
+     */
+    public function provideDataForConstuctor()
+    {
+        // $type, $content, $exType, $exVariable, $exDescription
+        return array(
+            array(
+                'var',
+                'int',
+                'int',
+                '',
+                ''
+            ),
+            array(
+                'var',
+                'int $bob',
+                'int',
+                '$bob',
+                ''
+            ),
+            array(
+                'var',
+                'int $bob Number of bobs',
+                'int',
+                '$bob',
+                'Number of bobs'
+            ),
+            array(
+                'var',
+                '',
+                '',
+                '',
+                ''
+            ),
+        );
+    }
+}

+ 115 - 0
vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Tag/VersionTagTest.php

xqd
@@ -0,0 +1,115 @@
+<?php
+/**
+ * phpDocumentor Version Tag Test
+ * 
+ * PHP version 5.3
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Tag;
+
+/**
+ * Test class for \Barryvdh\Reflection\DocBlock\Tag\VersionTag
+ *
+ * @author    Vasil Rangelov <boen.robot@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+class VersionTagTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * Test that the \Barryvdh\Reflection\DocBlock\Tag\LinkTag can create
+     * a link for the @version doc block.
+     *
+     * @param string $type
+     * @param string $content
+     * @param string $exContent
+     * @param string $exDescription
+     * @param string $exVersion
+     *
+     * @covers \Barryvdh\Reflection\DocBlock\Tag\VersionTag
+     * @dataProvider provideDataForConstuctor
+     *
+     * @return void
+     */
+    public function testConstructorParesInputsIntoCorrectFields(
+        $type,
+        $content,
+        $exContent,
+        $exDescription,
+        $exVersion
+    ) {
+        $tag = new VersionTag($type, $content);
+
+        $this->assertEquals($type, $tag->getName());
+        $this->assertEquals($exContent, $tag->getContent());
+        $this->assertEquals($exDescription, $tag->getDescription());
+        $this->assertEquals($exVersion, $tag->getVersion());
+    }
+
+    /**
+     * Data provider for testConstructorParesInputsIntoCorrectFields
+     *
+     * @return array
+     */
+    public function provideDataForConstuctor()
+    {
+        // $type, $content, $exContent, $exDescription, $exVersion
+        return array(
+            array(
+                'version',
+                '1.0 First release.',
+                '1.0 First release.',
+                'First release.',
+                '1.0'
+            ),
+            array(
+                'version',
+                "1.0\nFirst release.",
+                "1.0\nFirst release.",
+                'First release.',
+                '1.0'
+            ),
+            array(
+                'version',
+                "1.0\nFirst\nrelease.",
+                "1.0\nFirst\nrelease.",
+                "First\nrelease.",
+                '1.0'
+            ),
+            array(
+                'version',
+                'Unfinished release',
+                'Unfinished release',
+                'Unfinished release',
+                ''
+            ),
+            array(
+                'version',
+                '1.0',
+                '1.0',
+                '',
+                '1.0'
+            ),
+            array(
+                'version',
+                'GIT: $Id$',
+                'GIT: $Id$',
+                '',
+                'GIT: $Id$'
+            ),
+            array(
+                'version',
+                'GIT: $Id$ Dev build',
+                'GIT: $Id$ Dev build',
+                'Dev build',
+                'GIT: $Id$'
+            )
+        );
+    }
+}

+ 313 - 0
vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/TagTest.php

xqd
@@ -0,0 +1,313 @@
+<?php
+/**
+ * phpDocumentor Var Tag Test
+ * 
+ * PHP version 5.3
+ *
+ * @author    Daniel O'Connor <daniel.oconnor@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock;
+
+use Barryvdh\Reflection\DocBlock;
+use Barryvdh\Reflection\DocBlock\Context;
+
+/**
+ * Test class for \Barryvdh\Reflection\DocBlock\Tag\VarTag
+ *
+ * @author    Daniel O'Connor <daniel.oconnor@gmail.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+class TagTest extends \PHPUnit_Framework_TestCase
+{
+    
+    /**
+     * @expectedException \InvalidArgumentException
+     * 
+     * @return void
+     */
+    public function testInvalidTagLine()
+    {
+        Tag::createInstance('Invalid tag line');
+    }
+
+    /**
+     * @covers \Barryvdh\Reflection\DocBlock\Tag::registerTagHandler
+     * 
+     * @return void
+     */
+    public function testTagHandlerUnregistration()
+    {
+        $currentHandler = __NAMESPACE__ . '\Tag\VarTag';
+        $tagPreUnreg = Tag::createInstance('@var mixed');
+        $this->assertInstanceOf(
+            $currentHandler,
+            $tagPreUnreg
+        );
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\Tag',
+            $tagPreUnreg
+        );
+
+        Tag::registerTagHandler('var', null);
+
+        $tagPostUnreg = Tag::createInstance('@var mixed');
+        $this->assertNotInstanceOf(
+            $currentHandler,
+            $tagPostUnreg
+        );
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\Tag',
+            $tagPostUnreg
+        );
+
+        Tag::registerTagHandler('var', $currentHandler);
+    }
+
+    /**
+     * @covers \Barryvdh\Reflection\DocBlock\Tag::registerTagHandler
+     * 
+     * @return void
+     */
+    public function testTagHandlerCorrectRegistration()
+    {
+        if (0 == ini_get('allow_url_include')) {
+            $this->markTestSkipped('"data" URIs for includes are required.');
+        }
+        $currentHandler = __NAMESPACE__ . '\Tag\VarTag';
+        $tagPreReg = Tag::createInstance('@var mixed');
+        $this->assertInstanceOf(
+            $currentHandler,
+            $tagPreReg
+        );
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\Tag',
+            $tagPreReg
+        );
+
+        include 'data:text/plain;base64,'. base64_encode(
+<<<TAG_HANDLER
+<?php
+    class MyTagHandler extends \Barryvdh\Reflection\DocBlock\Tag {}
+TAG_HANDLER
+        );
+
+        $this->assertTrue(Tag::registerTagHandler('var', '\MyTagHandler'));
+
+        $tagPostReg = Tag::createInstance('@var mixed');
+        $this->assertNotInstanceOf(
+            $currentHandler,
+            $tagPostReg
+        );
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\Tag',
+            $tagPostReg
+        );
+        $this->assertInstanceOf(
+            '\MyTagHandler',
+            $tagPostReg
+        );
+
+        $this->assertTrue(Tag::registerTagHandler('var', $currentHandler));
+    }
+    
+    /**
+     * @depends testTagHandlerCorrectRegistration
+     * @covers \Barryvdh\Reflection\DocBlock\Tag::registerTagHandler
+     * @covers \Barryvdh\Reflection\DocBlock\Tag::createInstance
+     * 
+     * @return void
+     */
+    public function testNamespacedTagHandlerCorrectRegistration()
+    {
+        $tagPreReg = Tag::createInstance('@T something');
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\Tag',
+            $tagPreReg
+        );
+        $this->assertNotInstanceOf(
+            '\MyTagHandler',
+            $tagPreReg
+        );
+
+        $this->assertTrue(
+            Tag::registerTagHandler('\MyNamespace\MyTag', '\MyTagHandler')
+        );
+
+        $tagPostReg = Tag::createInstance(
+            '@T something',
+            new DocBlock(
+                '',
+                new Context('', array('T' => '\MyNamespace\MyTag'))
+            )
+        );
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\Tag',
+            $tagPostReg
+        );
+        $this->assertInstanceOf(
+            '\MyTagHandler',
+            $tagPostReg
+        );
+
+        $this->assertTrue(
+            Tag::registerTagHandler('\MyNamespace\MyTag', null)
+        );
+    }
+    
+    /**
+     * @depends testTagHandlerCorrectRegistration
+     * @covers \Barryvdh\Reflection\DocBlock\Tag::registerTagHandler
+     * @covers \Barryvdh\Reflection\DocBlock\Tag::createInstance
+     * 
+     * @return void
+     */
+    public function testNamespacedTagHandlerIncorrectRegistration()
+    {
+        $tagPreReg = Tag::createInstance('@T something');
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\Tag',
+            $tagPreReg
+        );
+        $this->assertNotInstanceOf(
+            '\MyTagHandler',
+            $tagPreReg
+        );
+
+        $this->assertFalse(
+            Tag::registerTagHandler('MyNamespace\MyTag', '\MyTagHandler')
+        );
+
+        $tagPostReg = Tag::createInstance(
+            '@T something',
+            new DocBlock(
+                '',
+                new Context('', array('T' => '\MyNamespace\MyTag'))
+            )
+        );
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\Tag',
+            $tagPostReg
+        );
+        $this->assertNotInstanceOf(
+            '\MyTagHandler',
+            $tagPostReg
+        );
+    }
+
+    /**
+     * @covers \Barryvdh\Reflection\DocBlock\Tag::registerTagHandler
+     * 
+     * @return void
+     */
+    public function testNonExistentTagHandlerRegistration()
+    {
+        $currentHandler = __NAMESPACE__ . '\Tag\VarTag';
+        $tagPreReg = Tag::createInstance('@var mixed');
+        $this->assertInstanceOf(
+            $currentHandler,
+            $tagPreReg
+        );
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\Tag',
+            $tagPreReg
+        );
+
+        $this->assertFalse(Tag::registerTagHandler('var', 'Non existent'));
+
+        $tagPostReg = Tag::createInstance('@var mixed');
+        $this->assertInstanceOf(
+            $currentHandler,
+            $tagPostReg
+        );
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\Tag',
+            $tagPostReg
+        );
+    }
+
+    /**
+     * @covers \Barryvdh\Reflection\DocBlock\Tag::registerTagHandler
+     * 
+     * @return void
+     */
+    public function testIncompatibleTagHandlerRegistration()
+    {
+        $currentHandler = __NAMESPACE__ . '\Tag\VarTag';
+        $tagPreReg = Tag::createInstance('@var mixed');
+        $this->assertInstanceOf(
+            $currentHandler,
+            $tagPreReg
+        );
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\Tag',
+            $tagPreReg
+        );
+
+        $this->assertFalse(
+            Tag::registerTagHandler('var', __NAMESPACE__ . '\TagTest')
+        );
+
+        $tagPostReg = Tag::createInstance('@var mixed');
+        $this->assertInstanceOf(
+            $currentHandler,
+            $tagPostReg
+        );
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\Tag',
+            $tagPostReg
+        );
+    }
+
+    /**
+     * Test that the \Barryvdh\Reflection\DocBlock\Tag\VarTag can
+     * understand the @var doc block.
+     *
+     * @param string $type
+     * @param string $content
+     * @param string $exDescription
+     *
+     * @covers \Barryvdh\Reflection\DocBlock\Tag
+     * @dataProvider provideDataForConstuctor
+     *
+     * @return void
+     */
+    public function testConstructorParesInputsIntoCorrectFields(
+        $type,
+        $content,
+        $exDescription
+    ) {
+        $tag = new Tag($type, $content);
+
+        $this->assertEquals($type, $tag->getName());
+        $this->assertEquals($content, $tag->getContent());
+        $this->assertEquals($exDescription, $tag->getDescription());
+    }
+
+    /**
+     * Data provider for testConstructorParesInputsIntoCorrectFields
+     *
+     * @return array
+     */
+    public function provideDataForConstuctor()
+    {
+        // $type, $content, $exDescription
+        return array(
+            array(
+                'unknown',
+                'some content',
+                'some content',
+            ),
+            array(
+                'unknown',
+                '',
+                '',
+            )
+        );
+    }
+}

+ 253 - 0
vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlock/Type/CollectionTest.php

xqd
@@ -0,0 +1,253 @@
+<?php
+/**
+ * phpDocumentor Collection Test
+ * 
+ * PHP version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection\DocBlock\Type;
+
+use Barryvdh\Reflection\DocBlock\Context;
+
+/**
+ * Test class for \Barryvdh\Reflection\DocBlock\Type\Collection
+ * 
+ * @covers Barryvdh\Reflection\DocBlock\Type\Collection
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+class CollectionTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * @covers Barryvdh\Reflection\DocBlock\Type\Collection::__construct
+     * @covers Barryvdh\Reflection\DocBlock\Type\Collection::getContext
+     * 
+     * @return void
+     */
+    public function testConstruct()
+    {
+        $collection = new Collection();
+        $this->assertCount(0, $collection);
+        $this->assertEquals('', $collection->getContext()->getNamespace());
+        $this->assertCount(0, $collection->getContext()->getNamespaceAliases());
+    }
+
+    /**
+     * @covers Barryvdh\Reflection\DocBlock\Type\Collection::__construct
+     * 
+     * @return void
+     */
+    public function testConstructWithTypes()
+    {
+        $collection = new Collection(array('integer', 'string'));
+        $this->assertCount(2, $collection);
+    }
+
+    /**
+     * @covers Barryvdh\Reflection\DocBlock\Type\Collection::__construct
+     * 
+     * @return void
+     */
+    public function testConstructWithNamespace()
+    {
+        $collection = new Collection(array(), new Context('\My\Space'));
+        $this->assertEquals('My\Space', $collection->getContext()->getNamespace());
+
+        $collection = new Collection(array(), new Context('My\Space'));
+        $this->assertEquals('My\Space', $collection->getContext()->getNamespace());
+
+        $collection = new Collection(array(), null);
+        $this->assertEquals('', $collection->getContext()->getNamespace());
+    }
+
+    /**
+     * @covers Barryvdh\Reflection\DocBlock\Type\Collection::__construct
+     * 
+     * @return void
+     */
+    public function testConstructWithNamespaceAliases()
+    {
+        $fixture = array('a' => 'b');
+        $collection = new Collection(array(), new Context(null, $fixture));
+        $this->assertEquals(
+            array('a' => '\b'),
+            $collection->getContext()->getNamespaceAliases()
+        );
+    }
+
+    /**
+     * @param string $fixture
+     * @param array  $expected
+     *
+     * @dataProvider provideTypesToExpand
+     * @covers Barryvdh\Reflection\DocBlock\Type\Collection::add
+     * 
+     * @return void
+     */
+    public function testAdd($fixture, $expected)
+    {
+        $collection = new Collection(
+            array(),
+            new Context('\My\Space', array('Alias' => '\My\Space\Aliasing'))
+        );
+        $collection->add($fixture);
+
+        $this->assertSame($expected, $collection->getArrayCopy());
+    }
+
+    /**
+     * @param string $fixture
+     * @param array  $expected
+     *
+     * @dataProvider provideTypesToExpandWithoutNamespace
+     * @covers Barryvdh\Reflection\DocBlock\Type\Collection::add
+     * 
+     * @return void
+     */
+    public function testAddWithoutNamespace($fixture, $expected)
+    {
+        $collection = new Collection(
+            array(),
+            new Context(null, array('Alias' => '\My\Space\Aliasing'))
+        );
+        $collection->add($fixture);
+
+        $this->assertSame($expected, $collection->getArrayCopy());
+    }
+
+    /**
+     * @param string $fixture
+     * @param array  $expected
+     *
+     * @dataProvider provideTypesToExpandWithPropertyOrMethod
+     * @covers Barryvdh\Reflection\DocBlock\Type\Collection::add
+     *
+     * @return void
+     */
+    public function testAddMethodsAndProperties($fixture, $expected)
+    {
+        $collection = new Collection(
+            array(),
+            new Context(null, array('LinkDescriptor' => '\phpDocumentor\LinkDescriptor'))
+        );
+        $collection->add($fixture);
+
+        $this->assertSame($expected, $collection->getArrayCopy());
+    }
+
+    /**
+     * @covers Barryvdh\Reflection\DocBlock\Type\Collection::add
+     * @expectedException InvalidArgumentException
+     * 
+     * @return void
+     */
+    public function testAddWithInvalidArgument()
+    {
+        $collection = new Collection();
+        $collection->add(array());
+    }
+
+    /**
+     * Returns the types and their expected values to test the retrieval of
+     * types.
+     *
+     * @param string $method    Name of the method consuming this data provider.
+     * @param string $namespace Name of the namespace to user as basis.
+     *
+     * @return string[]
+     */
+    public function provideTypesToExpand($method, $namespace = '\My\Space\\')
+    {
+        return array(
+            array('', array()),
+            array(' ', array()),
+            array('int', array('int')),
+            array('int ', array('int')),
+            array('string', array('string')),
+            array('DocBlock', array($namespace.'DocBlock')),
+            array('DocBlock[]', array($namespace.'DocBlock[]')),
+            array(' DocBlock ', array($namespace.'DocBlock')),
+            array('\My\Space\DocBlock', array('\My\Space\DocBlock')),
+            array('Alias\DocBlock', array('\My\Space\Aliasing\DocBlock')),
+            array(
+                'DocBlock|Tag',
+                array($namespace .'DocBlock', $namespace .'Tag')
+            ),
+            array(
+                'DocBlock|null',
+                array($namespace.'DocBlock', 'null')
+            ),
+            array(
+                '\My\Space\DocBlock|Tag',
+                array('\My\Space\DocBlock', $namespace.'Tag')
+            ),
+            array(
+                'DocBlock[]|null',
+                array($namespace.'DocBlock[]', 'null')
+            ),
+            array(
+                'DocBlock[]|int[]',
+                array($namespace.'DocBlock[]', 'int[]')
+            ),
+            array(
+                'LinkDescriptor::setLink()',
+                array($namespace.'LinkDescriptor::setLink()')
+            ),
+            array(
+                'Alias\LinkDescriptor::setLink()',
+                array('\My\Space\Aliasing\LinkDescriptor::setLink()')
+            ),
+        );
+    }
+
+    /**
+     * Returns the types and their expected values to test the retrieval of
+     * types when no namespace is available.
+     *
+     * @param string $method Name of the method consuming this data provider.
+     *
+     * @return string[]
+     */
+    public function provideTypesToExpandWithoutNamespace($method)
+    {
+        return $this->provideTypesToExpand($method, '\\');
+    }
+
+    /**
+     * Returns the method and property types and their expected values to test
+     * the retrieval of types.
+     *
+     * @param string $method Name of the method consuming this data provider.
+     *
+     * @return string[]
+     */
+    public function provideTypesToExpandWithPropertyOrMethod($method)
+    {
+        return array(
+            array(
+                'LinkDescriptor::setLink()',
+                array('\phpDocumentor\LinkDescriptor::setLink()')
+            ),
+            array(
+                'phpDocumentor\LinkDescriptor::setLink()',
+                array('\phpDocumentor\LinkDescriptor::setLink()')
+            ),
+            array(
+                'LinkDescriptor::$link',
+                array('\phpDocumentor\LinkDescriptor::$link')
+            ),
+            array(
+                'phpDocumentor\LinkDescriptor::$link',
+                array('\phpDocumentor\LinkDescriptor::$link')
+            ),
+        );
+    }
+}

+ 337 - 0
vendor/barryvdh/reflection-docblock/tests/Barryvdh/Reflection/DocBlockTest.php

xqd
@@ -0,0 +1,337 @@
+<?php
+/**
+ * phpDocumentor DocBlock Test
+ *
+ * PHP Version 5.3
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+
+namespace Barryvdh\Reflection;
+
+use Barryvdh\Reflection\DocBlock\Context;
+use Barryvdh\Reflection\DocBlock\Location;
+use Barryvdh\Reflection\DocBlock\Tag\ReturnTag;
+
+/**
+ * Test class for Barryvdh\Reflection\DocBlock
+ *
+ * @author    Mike van Riel <mike.vanriel@naenius.com>
+ * @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com)
+ * @license   http://www.opensource.org/licenses/mit-license.php MIT
+ * @link      http://phpdoc.org
+ */
+class DocBlockTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * @covers \Barryvdh\Reflection\DocBlock
+     * 
+     * @return void
+     */
+    public function testConstruct()
+    {
+        $fixture = <<<DOCBLOCK
+/**
+ * This is a short description
+ *
+ * This is a long description
+ *
+ * @see \MyClass
+ * @return void
+ */
+DOCBLOCK;
+        $object = new DocBlock(
+            $fixture,
+            new Context('\MyNamespace', array('PHPDoc' => '\phpDocumentor')),
+            new Location(2)
+        );
+        $this->assertEquals(
+            'This is a short description',
+            $object->getShortDescription()
+        );
+        $this->assertEquals(
+            'This is a long description',
+            $object->getLongDescription()->getContents()
+        );
+        $this->assertCount(2, $object->getTags());
+        $this->assertTrue($object->hasTag('see'));
+        $this->assertTrue($object->hasTag('return'));
+        $this->assertFalse($object->hasTag('category'));
+        
+        $this->assertSame('MyNamespace', $object->getContext()->getNamespace());
+        $this->assertSame(
+            array('PHPDoc' => '\phpDocumentor'),
+            $object->getContext()->getNamespaceAliases()
+        );
+        $this->assertSame(2, $object->getLocation()->getLineNumber());
+    }
+
+    /**
+     * @covers \Barryvdh\Reflection\DocBlock::splitDocBlock
+     *
+     * @return void
+     */
+    public function testConstructWithTagsOnly()
+    {
+        $fixture = <<<DOCBLOCK
+/**
+ * @see \MyClass
+ * @return void
+ */
+DOCBLOCK;
+        $object = new DocBlock($fixture);
+        $this->assertEquals('', $object->getShortDescription());
+        $this->assertEquals('', $object->getLongDescription()->getContents());
+        $this->assertCount(2, $object->getTags());
+        $this->assertTrue($object->hasTag('see'));
+        $this->assertTrue($object->hasTag('return'));
+        $this->assertFalse($object->hasTag('category'));
+    }
+
+    /**
+     * @covers \Barryvdh\Reflection\DocBlock::isTemplateStart
+     */
+    public function testIfStartOfTemplateIsDiscovered()
+    {
+        $fixture = <<<DOCBLOCK
+/**#@+
+ * @see \MyClass
+ * @return void
+ */
+DOCBLOCK;
+        $object = new DocBlock($fixture);
+        $this->assertEquals('', $object->getShortDescription());
+        $this->assertEquals('', $object->getLongDescription()->getContents());
+        $this->assertCount(2, $object->getTags());
+        $this->assertTrue($object->hasTag('see'));
+        $this->assertTrue($object->hasTag('return'));
+        $this->assertFalse($object->hasTag('category'));
+        $this->assertTrue($object->isTemplateStart());
+    }
+
+    /**
+     * @covers \Barryvdh\Reflection\DocBlock::isTemplateEnd
+     */
+    public function testIfEndOfTemplateIsDiscovered()
+    {
+        $fixture = <<<DOCBLOCK
+/**#@-*/
+DOCBLOCK;
+        $object = new DocBlock($fixture);
+        $this->assertEquals('', $object->getShortDescription());
+        $this->assertEquals('', $object->getLongDescription()->getContents());
+        $this->assertTrue($object->isTemplateEnd());
+    }
+
+    /**
+     * @covers \Barryvdh\Reflection\DocBlock::cleanInput
+     * 
+     * @return void
+     */
+    public function testConstructOneLiner()
+    {
+        $fixture = '/** Short description and nothing more. */';
+        $object = new DocBlock($fixture);
+        $this->assertEquals(
+            'Short description and nothing more.',
+            $object->getShortDescription()
+        );
+        $this->assertEquals('', $object->getLongDescription()->getContents());
+        $this->assertCount(0, $object->getTags());
+    }
+
+    /**
+     * @covers \Barryvdh\Reflection\DocBlock::__construct
+     * 
+     * @return void
+     */
+    public function testConstructFromReflector()
+    {
+        $object = new DocBlock(new \ReflectionClass($this));
+        $this->assertEquals(
+            'Test class for Barryvdh\Reflection\DocBlock',
+            $object->getShortDescription()
+        );
+        $this->assertEquals('', $object->getLongDescription()->getContents());
+        $this->assertCount(4, $object->getTags());
+        $this->assertTrue($object->hasTag('author'));
+        $this->assertTrue($object->hasTag('copyright'));
+        $this->assertTrue($object->hasTag('license'));
+        $this->assertTrue($object->hasTag('link'));
+        $this->assertFalse($object->hasTag('category'));
+    }
+
+    /**
+     * @expectedException \InvalidArgumentException
+     * 
+     * @return void
+     */
+    public function testExceptionOnInvalidObject()
+    {
+        new DocBlock($this);
+    }
+
+    public function testDotSeperation()
+    {
+        $fixture = <<<DOCBLOCK
+/**
+ * This is a short description.
+ * This is a long description.
+ * This is a continuation of the long description.
+ */
+DOCBLOCK;
+        $object = new DocBlock($fixture);
+        $this->assertEquals(
+            'This is a short description.',
+            $object->getShortDescription()
+        );
+        $this->assertEquals(
+            "This is a long description.\nThis is a continuation of the long "
+            ."description.",
+            $object->getLongDescription()->getContents()
+        );
+    }
+
+    /**
+     * @covers \Barryvdh\Reflection\DocBlock::parseTags
+     * @expectedException \LogicException
+     * 
+     * @return void
+     */
+    public function testInvalidTagBlock()
+    {
+        if (0 == ini_get('allow_url_include')) {
+            $this->markTestSkipped('"data" URIs for includes are required.');
+        }
+
+        include 'data:text/plain;base64,'. base64_encode(
+            <<<DOCBLOCK_EXTENSION
+<?php
+class MyReflectionDocBlock extends \Barryvdh\Reflection\DocBlock {
+    protected function splitDocBlock(\$comment) {
+        return array('', '', 'Invalid tag block');
+    }
+}
+DOCBLOCK_EXTENSION
+        );
+        new \MyReflectionDocBlock('');
+        
+    }
+
+    public function testTagCaseSensitivity()
+    {
+        $fixture = <<<DOCBLOCK
+/**
+ * This is a short description.
+ *
+ * This is a long description.
+ *
+ * @method null something()
+ * @Method({"GET", "POST"})
+ */
+DOCBLOCK;
+        $object = new DocBlock($fixture);
+        $this->assertEquals(
+            'This is a short description.',
+            $object->getShortDescription()
+        );
+        $this->assertEquals(
+            'This is a long description.',
+            $object->getLongDescription()->getContents()
+        );
+        $tags = $object->getTags();
+        $this->assertCount(2, $tags);
+        $this->assertTrue($object->hasTag('method'));
+        $this->assertTrue($object->hasTag('Method'));
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\DocBlock\Tag\MethodTag',
+            $tags[0]
+        );
+        $this->assertInstanceOf(
+            __NAMESPACE__ . '\DocBlock\Tag',
+            $tags[1]
+        );
+        $this->assertNotInstanceOf(
+            __NAMESPACE__ . '\DocBlock\Tag\MethodTag',
+            $tags[1]
+        );
+    }
+
+    /**
+     * @depends testConstructFromReflector
+     * @covers \Barryvdh\Reflection\DocBlock::getTagsByName
+     * 
+     * @return void
+     */
+    public function testGetTagsByNameZeroAndOneMatch()
+    {
+        $object = new DocBlock(new \ReflectionClass($this));
+        $this->assertEmpty($object->getTagsByName('category'));
+        $this->assertCount(1, $object->getTagsByName('author'));
+    }
+
+    /**
+     * @depends testConstructWithTagsOnly
+     * @covers \Barryvdh\Reflection\DocBlock::parseTags
+     * 
+     * @return void
+     */
+    public function testParseMultilineTag()
+    {
+        $fixture = <<<DOCBLOCK
+/**
+ * @return void Content on
+ *     multiple lines.
+ */
+DOCBLOCK;
+        $object = new DocBlock($fixture);
+        $this->assertCount(1, $object->getTags());
+    }
+
+    /**
+     * @depends testConstructWithTagsOnly
+     * @covers \Barryvdh\Reflection\DocBlock::parseTags
+     * 
+     * @return void
+     */
+    public function testParseMultilineTagWithLineBreaks()
+    {
+        $fixture = <<<DOCBLOCK
+/**
+ * @return void Content on
+ *     multiple lines.
+ *
+ *     One more, after the break.
+ */
+DOCBLOCK;
+        $object = new DocBlock($fixture);
+        $this->assertCount(1, $tags = $object->getTags());
+	    /** @var ReturnTag $tag */
+	    $tag = reset($tags);
+	    $this->assertEquals("Content on\n    multiple lines.\n\n    One more, after the break.", $tag->getDescription());
+    }
+
+    /**
+     * @depends testConstructWithTagsOnly
+     * @covers \Barryvdh\Reflection\DocBlock::getTagsByName
+     * 
+     * @return void
+     */
+    public function testGetTagsByNameMultipleMatch()
+    {
+        $fixture = <<<DOCBLOCK
+/**
+ * @param string
+ * @param int
+ * @return void
+ */
+DOCBLOCK;
+        $object = new DocBlock($fixture);
+        $this->assertEmpty($object->getTagsByName('category'));
+        $this->assertCount(1, $object->getTagsByName('return'));
+        $this->assertCount(2, $object->getTagsByName('param'));
+    }
+}

+ 1 - 0
vendor/bin/composer

xqd
@@ -0,0 +1 @@
+../composer/composer/bin/composer

+ 1 - 0
vendor/bin/doctrine-dbal

xqd
@@ -0,0 +1 @@
+../doctrine/dbal/bin/doctrine-dbal

+ 1 - 0
vendor/bin/generate-defuse-key

xqd
@@ -0,0 +1 @@
+../defuse/php-encryption/bin/generate-defuse-key

+ 1 - 0
vendor/bin/jsonlint

xqd
@@ -0,0 +1 @@
+../seld/jsonlint/bin/jsonlint

+ 1 - 0
vendor/bin/php-parse

xqd
@@ -0,0 +1 @@
+../nikic/php-parser/bin/php-parse

+ 1 - 0
vendor/bin/phpunit

xqd
@@ -0,0 +1 @@
+../phpunit/phpunit/phpunit

+ 1 - 0
vendor/bin/psysh

xqd
@@ -0,0 +1 @@
+../psy/psysh/bin/psysh

+ 1 - 0
vendor/bin/validate-json

xqd
@@ -0,0 +1 @@
+../justinrainbow/json-schema/bin/validate-json

+ 445 - 0
vendor/composer/ClassLoader.php

xqd
@@ -0,0 +1,445 @@
+<?php
+
+/*
+ * This file is part of Composer.
+ *
+ * (c) Nils Adermann <naderman@naderman.de>
+ *     Jordi Boggiano <j.boggiano@seld.be>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Composer\Autoload;
+
+/**
+ * ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
+ *
+ *     $loader = new \Composer\Autoload\ClassLoader();
+ *
+ *     // register classes with namespaces
+ *     $loader->add('Symfony\Component', __DIR__.'/component');
+ *     $loader->add('Symfony',           __DIR__.'/framework');
+ *
+ *     // activate the autoloader
+ *     $loader->register();
+ *
+ *     // to enable searching the include path (eg. for PEAR packages)
+ *     $loader->setUseIncludePath(true);
+ *
+ * In this example, if you try to use a class in the Symfony\Component
+ * namespace or one of its children (Symfony\Component\Console for instance),
+ * the autoloader will first look for the class under the component/
+ * directory, and it will then fallback to the framework/ directory if not
+ * found before giving up.
+ *
+ * This class is loosely based on the Symfony UniversalClassLoader.
+ *
+ * @author Fabien Potencier <fabien@symfony.com>
+ * @author Jordi Boggiano <j.boggiano@seld.be>
+ * @see    http://www.php-fig.org/psr/psr-0/
+ * @see    http://www.php-fig.org/psr/psr-4/
+ */
+class ClassLoader
+{
+    // PSR-4
+    private $prefixLengthsPsr4 = array();
+    private $prefixDirsPsr4 = array();
+    private $fallbackDirsPsr4 = array();
+
+    // PSR-0
+    private $prefixesPsr0 = array();
+    private $fallbackDirsPsr0 = array();
+
+    private $useIncludePath = false;
+    private $classMap = array();
+    private $classMapAuthoritative = false;
+    private $missingClasses = array();
+    private $apcuPrefix;
+
+    public function getPrefixes()
+    {
+        if (!empty($this->prefixesPsr0)) {
+            return call_user_func_array('array_merge', $this->prefixesPsr0);
+        }
+
+        return array();
+    }
+
+    public function getPrefixesPsr4()
+    {
+        return $this->prefixDirsPsr4;
+    }
+
+    public function getFallbackDirs()
+    {
+        return $this->fallbackDirsPsr0;
+    }
+
+    public function getFallbackDirsPsr4()
+    {
+        return $this->fallbackDirsPsr4;
+    }
+
+    public function getClassMap()
+    {
+        return $this->classMap;
+    }
+
+    /**
+     * @param array $classMap Class to filename map
+     */
+    public function addClassMap(array $classMap)
+    {
+        if ($this->classMap) {
+            $this->classMap = array_merge($this->classMap, $classMap);
+        } else {
+            $this->classMap = $classMap;
+        }
+    }
+
+    /**
+     * Registers a set of PSR-0 directories for a given prefix, either
+     * appending or prepending to the ones previously set for this prefix.
+     *
+     * @param string       $prefix  The prefix
+     * @param array|string $paths   The PSR-0 root directories
+     * @param bool         $prepend Whether to prepend the directories
+     */
+    public function add($prefix, $paths, $prepend = false)
+    {
+        if (!$prefix) {
+            if ($prepend) {
+                $this->fallbackDirsPsr0 = array_merge(
+                    (array) $paths,
+                    $this->fallbackDirsPsr0
+                );
+            } else {
+                $this->fallbackDirsPsr0 = array_merge(
+                    $this->fallbackDirsPsr0,
+                    (array) $paths
+                );
+            }
+
+            return;
+        }
+
+        $first = $prefix[0];
+        if (!isset($this->prefixesPsr0[$first][$prefix])) {
+            $this->prefixesPsr0[$first][$prefix] = (array) $paths;
+
+            return;
+        }
+        if ($prepend) {
+            $this->prefixesPsr0[$first][$prefix] = array_merge(
+                (array) $paths,
+                $this->prefixesPsr0[$first][$prefix]
+            );
+        } else {
+            $this->prefixesPsr0[$first][$prefix] = array_merge(
+                $this->prefixesPsr0[$first][$prefix],
+                (array) $paths
+            );
+        }
+    }
+
+    /**
+     * Registers a set of PSR-4 directories for a given namespace, either
+     * appending or prepending to the ones previously set for this namespace.
+     *
+     * @param string       $prefix  The prefix/namespace, with trailing '\\'
+     * @param array|string $paths   The PSR-4 base directories
+     * @param bool         $prepend Whether to prepend the directories
+     *
+     * @throws \InvalidArgumentException
+     */
+    public function addPsr4($prefix, $paths, $prepend = false)
+    {
+        if (!$prefix) {
+            // Register directories for the root namespace.
+            if ($prepend) {
+                $this->fallbackDirsPsr4 = array_merge(
+                    (array) $paths,
+                    $this->fallbackDirsPsr4
+                );
+            } else {
+                $this->fallbackDirsPsr4 = array_merge(
+                    $this->fallbackDirsPsr4,
+                    (array) $paths
+                );
+            }
+        } elseif (!isset($this->prefixDirsPsr4[$prefix])) {
+            // Register directories for a new namespace.
+            $length = strlen($prefix);
+            if ('\\' !== $prefix[$length - 1]) {
+                throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
+            }
+            $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
+            $this->prefixDirsPsr4[$prefix] = (array) $paths;
+        } elseif ($prepend) {
+            // Prepend directories for an already registered namespace.
+            $this->prefixDirsPsr4[$prefix] = array_merge(
+                (array) $paths,
+                $this->prefixDirsPsr4[$prefix]
+            );
+        } else {
+            // Append directories for an already registered namespace.
+            $this->prefixDirsPsr4[$prefix] = array_merge(
+                $this->prefixDirsPsr4[$prefix],
+                (array) $paths
+            );
+        }
+    }
+
+    /**
+     * Registers a set of PSR-0 directories for a given prefix,
+     * replacing any others previously set for this prefix.
+     *
+     * @param string       $prefix The prefix
+     * @param array|string $paths  The PSR-0 base directories
+     */
+    public function set($prefix, $paths)
+    {
+        if (!$prefix) {
+            $this->fallbackDirsPsr0 = (array) $paths;
+        } else {
+            $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
+        }
+    }
+
+    /**
+     * Registers a set of PSR-4 directories for a given namespace,
+     * replacing any others previously set for this namespace.
+     *
+     * @param string       $prefix The prefix/namespace, with trailing '\\'
+     * @param array|string $paths  The PSR-4 base directories
+     *
+     * @throws \InvalidArgumentException
+     */
+    public function setPsr4($prefix, $paths)
+    {
+        if (!$prefix) {
+            $this->fallbackDirsPsr4 = (array) $paths;
+        } else {
+            $length = strlen($prefix);
+            if ('\\' !== $prefix[$length - 1]) {
+                throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
+            }
+            $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
+            $this->prefixDirsPsr4[$prefix] = (array) $paths;
+        }
+    }
+
+    /**
+     * Turns on searching the include path for class files.
+     *
+     * @param bool $useIncludePath
+     */
+    public function setUseIncludePath($useIncludePath)
+    {
+        $this->useIncludePath = $useIncludePath;
+    }
+
+    /**
+     * Can be used to check if the autoloader uses the include path to check
+     * for classes.
+     *
+     * @return bool
+     */
+    public function getUseIncludePath()
+    {
+        return $this->useIncludePath;
+    }
+
+    /**
+     * Turns off searching the prefix and fallback directories for classes
+     * that have not been registered with the class map.
+     *
+     * @param bool $classMapAuthoritative
+     */
+    public function setClassMapAuthoritative($classMapAuthoritative)
+    {
+        $this->classMapAuthoritative = $classMapAuthoritative;
+    }
+
+    /**
+     * Should class lookup fail if not found in the current class map?
+     *
+     * @return bool
+     */
+    public function isClassMapAuthoritative()
+    {
+        return $this->classMapAuthoritative;
+    }
+
+    /**
+     * APCu prefix to use to cache found/not-found classes, if the extension is enabled.
+     *
+     * @param string|null $apcuPrefix
+     */
+    public function setApcuPrefix($apcuPrefix)
+    {
+        $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
+    }
+
+    /**
+     * The APCu prefix in use, or null if APCu caching is not enabled.
+     *
+     * @return string|null
+     */
+    public function getApcuPrefix()
+    {
+        return $this->apcuPrefix;
+    }
+
+    /**
+     * Registers this instance as an autoloader.
+     *
+     * @param bool $prepend Whether to prepend the autoloader or not
+     */
+    public function register($prepend = false)
+    {
+        spl_autoload_register(array($this, 'loadClass'), true, $prepend);
+    }
+
+    /**
+     * Unregisters this instance as an autoloader.
+     */
+    public function unregister()
+    {
+        spl_autoload_unregister(array($this, 'loadClass'));
+    }
+
+    /**
+     * Loads the given class or interface.
+     *
+     * @param  string    $class The name of the class
+     * @return bool|null True if loaded, null otherwise
+     */
+    public function loadClass($class)
+    {
+        if ($file = $this->findFile($class)) {
+            includeFile($file);
+
+            return true;
+        }
+    }
+
+    /**
+     * Finds the path to the file where the class is defined.
+     *
+     * @param string $class The name of the class
+     *
+     * @return string|false The path if found, false otherwise
+     */
+    public function findFile($class)
+    {
+        // class map lookup
+        if (isset($this->classMap[$class])) {
+            return $this->classMap[$class];
+        }
+        if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
+            return false;
+        }
+        if (null !== $this->apcuPrefix) {
+            $file = apcu_fetch($this->apcuPrefix.$class, $hit);
+            if ($hit) {
+                return $file;
+            }
+        }
+
+        $file = $this->findFileWithExtension($class, '.php');
+
+        // Search for Hack files if we are running on HHVM
+        if (false === $file && defined('HHVM_VERSION')) {
+            $file = $this->findFileWithExtension($class, '.hh');
+        }
+
+        if (null !== $this->apcuPrefix) {
+            apcu_add($this->apcuPrefix.$class, $file);
+        }
+
+        if (false === $file) {
+            // Remember that this class does not exist.
+            $this->missingClasses[$class] = true;
+        }
+
+        return $file;
+    }
+
+    private function findFileWithExtension($class, $ext)
+    {
+        // PSR-4 lookup
+        $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
+
+        $first = $class[0];
+        if (isset($this->prefixLengthsPsr4[$first])) {
+            $subPath = $class;
+            while (false !== $lastPos = strrpos($subPath, '\\')) {
+                $subPath = substr($subPath, 0, $lastPos);
+                $search = $subPath . '\\';
+                if (isset($this->prefixDirsPsr4[$search])) {
+                    $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
+                    foreach ($this->prefixDirsPsr4[$search] as $dir) {
+                        if (file_exists($file = $dir . $pathEnd)) {
+                            return $file;
+                        }
+                    }
+                }
+            }
+        }
+
+        // PSR-4 fallback dirs
+        foreach ($this->fallbackDirsPsr4 as $dir) {
+            if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
+                return $file;
+            }
+        }
+
+        // PSR-0 lookup
+        if (false !== $pos = strrpos($class, '\\')) {
+            // namespaced class name
+            $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
+                . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
+        } else {
+            // PEAR-like class name
+            $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
+        }
+
+        if (isset($this->prefixesPsr0[$first])) {
+            foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
+                if (0 === strpos($class, $prefix)) {
+                    foreach ($dirs as $dir) {
+                        if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
+                            return $file;
+                        }
+                    }
+                }
+            }
+        }
+
+        // PSR-0 fallback dirs
+        foreach ($this->fallbackDirsPsr0 as $dir) {
+            if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
+                return $file;
+            }
+        }
+
+        // PSR-0 include paths.
+        if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
+            return $file;
+        }
+
+        return false;
+    }
+}
+
+/**
+ * Scope isolated include.
+ *
+ * Prevents access to $this/self from included files.
+ */
+function includeFile($file)
+{
+    include $file;
+}

+ 21 - 0
vendor/composer/LICENSE

xqd
@@ -0,0 +1,21 @@
+
+Copyright (c) Nils Adermann, Jordi Boggiano
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is furnished
+to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+

+ 774 - 0
vendor/composer/autoload_classmap.php

xqd
@@ -0,0 +1,774 @@
+<?php
+
+// autoload_classmap.php @generated by Composer
+
+$vendorDir = dirname(dirname(__FILE__));
+$baseDir = dirname($vendorDir);
+
+return array(
+    'ArithmeticError' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php',
+    'AssertionError' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/AssertionError.php',
+    'DatabaseSeeder' => $baseDir . '/database/seeds/DatabaseSeeder.php',
+    'DivisionByZeroError' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php',
+    'Error' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/Error.php',
+    'File_Iterator' => $vendorDir . '/phpunit/php-file-iterator/src/Iterator.php',
+    'File_Iterator_Facade' => $vendorDir . '/phpunit/php-file-iterator/src/Facade.php',
+    'File_Iterator_Factory' => $vendorDir . '/phpunit/php-file-iterator/src/Factory.php',
+    'Grafika\\Color' => $baseDir . '/app/Helper/Grafika/Color.php',
+    'Grafika\\DrawingObjectInterface' => $baseDir . '/app/Helper/Grafika/DrawingObjectInterface.php',
+    'Grafika\\DrawingObject\\CubicBezier' => $baseDir . '/app/Helper/Grafika/DrawingObject/CubicBezier.php',
+    'Grafika\\DrawingObject\\Ellipse' => $baseDir . '/app/Helper/Grafika/DrawingObject/Ellipse.php',
+    'Grafika\\DrawingObject\\Line' => $baseDir . '/app/Helper/Grafika/DrawingObject/Line.php',
+    'Grafika\\DrawingObject\\Polygon' => $baseDir . '/app/Helper/Grafika/DrawingObject/Polygon.php',
+    'Grafika\\DrawingObject\\QuadraticBezier' => $baseDir . '/app/Helper/Grafika/DrawingObject/QuadraticBezier.php',
+    'Grafika\\DrawingObject\\Rectangle' => $baseDir . '/app/Helper/Grafika/DrawingObject/Rectangle.php',
+    'Grafika\\EditorInterface' => $baseDir . '/app/Helper/Grafika/EditorInterface.php',
+    'Grafika\\FilterInterface' => $baseDir . '/app/Helper/Grafika/FilterInterface.php',
+    'Grafika\\Gd\\DrawingObject\\CubicBezier' => $baseDir . '/app/Helper/Grafika/Gd/DrawingObject/CubicBezier.php',
+    'Grafika\\Gd\\DrawingObject\\Ellipse' => $baseDir . '/app/Helper/Grafika/Gd/DrawingObject/Ellipse.php',
+    'Grafika\\Gd\\DrawingObject\\Line' => $baseDir . '/app/Helper/Grafika/Gd/DrawingObject/Line.php',
+    'Grafika\\Gd\\DrawingObject\\Polygon' => $baseDir . '/app/Helper/Grafika/Gd/DrawingObject/Polygon.php',
+    'Grafika\\Gd\\DrawingObject\\QuadraticBezier' => $baseDir . '/app/Helper/Grafika/Gd/DrawingObject/QuadraticBezier.php',
+    'Grafika\\Gd\\DrawingObject\\Rectangle' => $baseDir . '/app/Helper/Grafika/Gd/DrawingObject/Rectangle.php',
+    'Grafika\\Gd\\Editor' => $baseDir . '/app/Helper/Grafika/Gd/Editor.php',
+    'Grafika\\Gd\\Filter\\Blur' => $baseDir . '/app/Helper/Grafika/Gd/Filter/Blur.php',
+    'Grafika\\Gd\\Filter\\Brightness' => $baseDir . '/app/Helper/Grafika/Gd/Filter/Brightness.php',
+    'Grafika\\Gd\\Filter\\Colorize' => $baseDir . '/app/Helper/Grafika/Gd/Filter/Colorize.php',
+    'Grafika\\Gd\\Filter\\Contrast' => $baseDir . '/app/Helper/Grafika/Gd/Filter/Contrast.php',
+    'Grafika\\Gd\\Filter\\Dither' => $baseDir . '/app/Helper/Grafika/Gd/Filter/Dither.php',
+    'Grafika\\Gd\\Filter\\Gamma' => $baseDir . '/app/Helper/Grafika/Gd/Filter/Gamma.php',
+    'Grafika\\Gd\\Filter\\Grayscale' => $baseDir . '/app/Helper/Grafika/Gd/Filter/Grayscale.php',
+    'Grafika\\Gd\\Filter\\Invert' => $baseDir . '/app/Helper/Grafika/Gd/Filter/Invert.php',
+    'Grafika\\Gd\\Filter\\Pixelate' => $baseDir . '/app/Helper/Grafika/Gd/Filter/Pixelate.php',
+    'Grafika\\Gd\\Filter\\Sharpen' => $baseDir . '/app/Helper/Grafika/Gd/Filter/Sharpen.php',
+    'Grafika\\Gd\\Filter\\Sobel' => $baseDir . '/app/Helper/Grafika/Gd/Filter/Sobel.php',
+    'Grafika\\Gd\\Helper\\GifByteStream' => $baseDir . '/app/Helper/Grafika/Gd/Helper/GifByteStream.php',
+    'Grafika\\Gd\\Helper\\GifHelper' => $baseDir . '/app/Helper/Grafika/Gd/Helper/GifHelper.php',
+    'Grafika\\Gd\\Image' => $baseDir . '/app/Helper/Grafika/Gd/Image.php',
+    'Grafika\\Gd\\ImageHash\\AverageHash' => $baseDir . '/app/Helper/Grafika/Gd/ImageHash/AverageHash.php',
+    'Grafika\\Gd\\ImageHash\\DifferenceHash' => $baseDir . '/app/Helper/Grafika/Gd/ImageHash/DifferenceHash.php',
+    'Grafika\\Grafika' => $baseDir . '/app/Helper/Grafika/Grafika.php',
+    'Grafika\\ImageInterface' => $baseDir . '/app/Helper/Grafika/ImageInterface.php',
+    'Grafika\\ImageType' => $baseDir . '/app/Helper/Grafika/ImageType.php',
+    'Grafika\\Imagick\\DrawingObject\\CubicBezier' => $baseDir . '/app/Helper/Grafika/Imagick/DrawingObject/CubicBezier.php',
+    'Grafika\\Imagick\\DrawingObject\\Ellipse' => $baseDir . '/app/Helper/Grafika/Imagick/DrawingObject/Ellipse.php',
+    'Grafika\\Imagick\\DrawingObject\\Line' => $baseDir . '/app/Helper/Grafika/Imagick/DrawingObject/Line.php',
+    'Grafika\\Imagick\\DrawingObject\\Polygon' => $baseDir . '/app/Helper/Grafika/Imagick/DrawingObject/Polygon.php',
+    'Grafika\\Imagick\\DrawingObject\\QuadraticBezier' => $baseDir . '/app/Helper/Grafika/Imagick/DrawingObject/QuadraticBezier.php',
+    'Grafika\\Imagick\\DrawingObject\\Rectangle' => $baseDir . '/app/Helper/Grafika/Imagick/DrawingObject/Rectangle.php',
+    'Grafika\\Imagick\\Editor' => $baseDir . '/app/Helper/Grafika/Imagick/Editor.php',
+    'Grafika\\Imagick\\Filter\\Blur' => $baseDir . '/app/Helper/Grafika/Imagick/Filter/Blur.php',
+    'Grafika\\Imagick\\Filter\\Brightness' => $baseDir . '/app/Helper/Grafika/Imagick/Filter/Brightness.php',
+    'Grafika\\Imagick\\Filter\\Colorize' => $baseDir . '/app/Helper/Grafika/Imagick/Filter/Colorize.php',
+    'Grafika\\Imagick\\Filter\\Contrast' => $baseDir . '/app/Helper/Grafika/Imagick/Filter/Contrast.php',
+    'Grafika\\Imagick\\Filter\\Dither' => $baseDir . '/app/Helper/Grafika/Imagick/Filter/Dither.php',
+    'Grafika\\Imagick\\Filter\\Gamma' => $baseDir . '/app/Helper/Grafika/Imagick/Filter/Gamma.php',
+    'Grafika\\Imagick\\Filter\\Grayscale' => $baseDir . '/app/Helper/Grafika/Imagick/Filter/Grayscale.php',
+    'Grafika\\Imagick\\Filter\\Invert' => $baseDir . '/app/Helper/Grafika/Imagick/Filter/Invert.php',
+    'Grafika\\Imagick\\Filter\\Pixelate' => $baseDir . '/app/Helper/Grafika/Imagick/Filter/Pixelate.php',
+    'Grafika\\Imagick\\Filter\\Sharpen' => $baseDir . '/app/Helper/Grafika/Imagick/Filter/Sharpen.php',
+    'Grafika\\Imagick\\Filter\\Sobel' => $baseDir . '/app/Helper/Grafika/Imagick/Filter/Sobel.php',
+    'Grafika\\Imagick\\Image' => $baseDir . '/app/Helper/Grafika/Imagick/Image.php',
+    'Grafika\\Imagick\\ImageHash\\AverageHash' => $baseDir . '/app/Helper/Grafika/Imagick/ImageHash/AverageHash.php',
+    'Grafika\\Imagick\\ImageHash\\DifferenceHash' => $baseDir . '/app/Helper/Grafika/Imagick/ImageHash/DifferenceHash.php',
+    'Grafika\\Position' => $baseDir . '/app/Helper/Grafika/Position.php',
+    'Hamcrest\\Arrays\\IsArray' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArray.php',
+    'Hamcrest\\Arrays\\IsArrayContaining' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContaining.php',
+    'Hamcrest\\Arrays\\IsArrayContainingInAnyOrder' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingInAnyOrder.php',
+    'Hamcrest\\Arrays\\IsArrayContainingInOrder' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingInOrder.php',
+    'Hamcrest\\Arrays\\IsArrayContainingKey' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingKey.php',
+    'Hamcrest\\Arrays\\IsArrayContainingKeyValuePair' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingKeyValuePair.php',
+    'Hamcrest\\Arrays\\IsArrayWithSize' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayWithSize.php',
+    'Hamcrest\\Arrays\\MatchingOnce' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/MatchingOnce.php',
+    'Hamcrest\\Arrays\\SeriesMatchingOnce' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/SeriesMatchingOnce.php',
+    'Hamcrest\\AssertionError' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/AssertionError.php',
+    'Hamcrest\\BaseDescription' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/BaseDescription.php',
+    'Hamcrest\\BaseMatcher' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/BaseMatcher.php',
+    'Hamcrest\\Collection\\IsEmptyTraversable' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Collection/IsEmptyTraversable.php',
+    'Hamcrest\\Collection\\IsTraversableWithSize' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Collection/IsTraversableWithSize.php',
+    'Hamcrest\\Core\\AllOf' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/AllOf.php',
+    'Hamcrest\\Core\\AnyOf' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/AnyOf.php',
+    'Hamcrest\\Core\\CombinableMatcher' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/CombinableMatcher.php',
+    'Hamcrest\\Core\\DescribedAs' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/DescribedAs.php',
+    'Hamcrest\\Core\\Every' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/Every.php',
+    'Hamcrest\\Core\\HasToString' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/HasToString.php',
+    'Hamcrest\\Core\\Is' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/Is.php',
+    'Hamcrest\\Core\\IsAnything' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsAnything.php',
+    'Hamcrest\\Core\\IsCollectionContaining' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsCollectionContaining.php',
+    'Hamcrest\\Core\\IsEqual' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsEqual.php',
+    'Hamcrest\\Core\\IsIdentical' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsIdentical.php',
+    'Hamcrest\\Core\\IsInstanceOf' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsInstanceOf.php',
+    'Hamcrest\\Core\\IsNot' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsNot.php',
+    'Hamcrest\\Core\\IsNull' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsNull.php',
+    'Hamcrest\\Core\\IsSame' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsSame.php',
+    'Hamcrest\\Core\\IsTypeOf' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsTypeOf.php',
+    'Hamcrest\\Core\\Set' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/Set.php',
+    'Hamcrest\\Core\\ShortcutCombination' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/ShortcutCombination.php',
+    'Hamcrest\\Description' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Description.php',
+    'Hamcrest\\DiagnosingMatcher' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/DiagnosingMatcher.php',
+    'Hamcrest\\FeatureMatcher' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/FeatureMatcher.php',
+    'Hamcrest\\Internal\\SelfDescribingValue' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Internal/SelfDescribingValue.php',
+    'Hamcrest\\Matcher' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Matcher.php',
+    'Hamcrest\\MatcherAssert' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/MatcherAssert.php',
+    'Hamcrest\\Matchers' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Matchers.php',
+    'Hamcrest\\NullDescription' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/NullDescription.php',
+    'Hamcrest\\Number\\IsCloseTo' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Number/IsCloseTo.php',
+    'Hamcrest\\Number\\OrderingComparison' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Number/OrderingComparison.php',
+    'Hamcrest\\SelfDescribing' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/SelfDescribing.php',
+    'Hamcrest\\StringDescription' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/StringDescription.php',
+    'Hamcrest\\Text\\IsEmptyString' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/IsEmptyString.php',
+    'Hamcrest\\Text\\IsEqualIgnoringCase' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/IsEqualIgnoringCase.php',
+    'Hamcrest\\Text\\IsEqualIgnoringWhiteSpace' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/IsEqualIgnoringWhiteSpace.php',
+    'Hamcrest\\Text\\MatchesPattern' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/MatchesPattern.php',
+    'Hamcrest\\Text\\StringContains' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringContains.php',
+    'Hamcrest\\Text\\StringContainsIgnoringCase' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringContainsIgnoringCase.php',
+    'Hamcrest\\Text\\StringContainsInOrder' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringContainsInOrder.php',
+    'Hamcrest\\Text\\StringEndsWith' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringEndsWith.php',
+    'Hamcrest\\Text\\StringStartsWith' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringStartsWith.php',
+    'Hamcrest\\Text\\SubstringMatcher' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/SubstringMatcher.php',
+    'Hamcrest\\TypeSafeDiagnosingMatcher' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/TypeSafeDiagnosingMatcher.php',
+    'Hamcrest\\TypeSafeMatcher' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/TypeSafeMatcher.php',
+    'Hamcrest\\Type\\IsArray' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsArray.php',
+    'Hamcrest\\Type\\IsBoolean' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsBoolean.php',
+    'Hamcrest\\Type\\IsCallable' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsCallable.php',
+    'Hamcrest\\Type\\IsDouble' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsDouble.php',
+    'Hamcrest\\Type\\IsInteger' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsInteger.php',
+    'Hamcrest\\Type\\IsNumeric' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsNumeric.php',
+    'Hamcrest\\Type\\IsObject' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsObject.php',
+    'Hamcrest\\Type\\IsResource' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsResource.php',
+    'Hamcrest\\Type\\IsScalar' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsScalar.php',
+    'Hamcrest\\Type\\IsString' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsString.php',
+    'Hamcrest\\Util' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Util.php',
+    'Hamcrest\\Xml\\HasXPath' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Xml/HasXPath.php',
+    'HttpClient' => $baseDir . '/app/libs/print/HttpClient.class.php',
+    'Maatwebsite\\Excel\\Classes\\Cache' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Classes/Cache.php',
+    'Maatwebsite\\Excel\\Classes\\FormatIdentifier' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Classes/FormatIdentifier.php',
+    'Maatwebsite\\Excel\\Classes\\LaravelExcelWorksheet' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Classes/LaravelExcelWorksheet.php',
+    'Maatwebsite\\Excel\\Classes\\PHPExcel' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Classes/PHPExcel.php',
+    'Maatwebsite\\Excel\\Collections\\CellCollection' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Collections/CellCollection.php',
+    'Maatwebsite\\Excel\\Collections\\ExcelCollection' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Collections/ExcelCollection.php',
+    'Maatwebsite\\Excel\\Collections\\RowCollection' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Collections/RowCollection.php',
+    'Maatwebsite\\Excel\\Collections\\SheetCollection' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Collections/SheetCollection.php',
+    'Maatwebsite\\Excel\\Excel' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Excel.php',
+    'Maatwebsite\\Excel\\ExcelServiceProvider' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/ExcelServiceProvider.php',
+    'Maatwebsite\\Excel\\Exceptions\\LaravelExcelException' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Exceptions/LaravelExcelException.php',
+    'Maatwebsite\\Excel\\Facades\\Excel' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Facades/Excel.php',
+    'Maatwebsite\\Excel\\Files\\ExcelFile' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Files/ExcelFile.php',
+    'Maatwebsite\\Excel\\Files\\ExportHandler' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Files/ExportHandler.php',
+    'Maatwebsite\\Excel\\Files\\File' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Files/File.php',
+    'Maatwebsite\\Excel\\Files\\ImportHandler' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Files/ImportHandler.php',
+    'Maatwebsite\\Excel\\Files\\NewExcelFile' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Files/NewExcelFile.php',
+    'Maatwebsite\\Excel\\Filters\\ChunkReadFilter' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Filters/ChunkReadFilter.php',
+    'Maatwebsite\\Excel\\Parsers\\CssParser' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Parsers/CssParser.php',
+    'Maatwebsite\\Excel\\Parsers\\ExcelParser' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Parsers/ExcelParser.php',
+    'Maatwebsite\\Excel\\Parsers\\ViewParser' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Parsers/ViewParser.php',
+    'Maatwebsite\\Excel\\Readers\\Batch' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Readers/Batch.php',
+    'Maatwebsite\\Excel\\Readers\\ChunkedReadJob' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Readers/ChunkedReadJob.php',
+    'Maatwebsite\\Excel\\Readers\\ConfigReader' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Readers/ConfigReader.php',
+    'Maatwebsite\\Excel\\Readers\\Html' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Readers/HtmlReader.php',
+    'Maatwebsite\\Excel\\Readers\\LaravelExcelReader' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Readers/LaravelExcelReader.php',
+    'Maatwebsite\\Excel\\Writers\\CellWriter' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Writers/CellWriter.php',
+    'Maatwebsite\\Excel\\Writers\\LaravelExcelWriter' => $vendorDir . '/maatwebsite/excel/src/Maatwebsite/Excel/Writers/LaravelExcelWriter.php',
+    'PHPUnit\\Exception' => $vendorDir . '/phpunit/phpunit/src/Exception.php',
+    'PHPUnit\\Framework\\Assert' => $vendorDir . '/phpunit/phpunit/src/Framework/Assert.php',
+    'PHPUnit\\Framework\\AssertionFailedError' => $vendorDir . '/phpunit/phpunit/src/Framework/AssertionFailedError.php',
+    'PHPUnit\\Framework\\BaseTestListener' => $vendorDir . '/phpunit/phpunit/src/Framework/BaseTestListener.php',
+    'PHPUnit\\Framework\\CodeCoverageException' => $vendorDir . '/phpunit/phpunit/src/Framework/CodeCoverageException.php',
+    'PHPUnit\\Framework\\Constraint\\ArrayHasKey' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ArrayHasKey.php',
+    'PHPUnit\\Framework\\Constraint\\ArraySubset' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ArraySubset.php',
+    'PHPUnit\\Framework\\Constraint\\Attribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Attribute.php',
+    'PHPUnit\\Framework\\Constraint\\Callback' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Callback.php',
+    'PHPUnit\\Framework\\Constraint\\ClassHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ClassHasAttribute.php',
+    'PHPUnit\\Framework\\Constraint\\ClassHasStaticAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ClassHasStaticAttribute.php',
+    'PHPUnit\\Framework\\Constraint\\Composite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Composite.php',
+    'PHPUnit\\Framework\\Constraint\\Constraint' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Constraint.php',
+    'PHPUnit\\Framework\\Constraint\\Count' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Count.php',
+    'PHPUnit\\Framework\\Constraint\\DirectoryExists' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/DirectoryExists.php',
+    'PHPUnit\\Framework\\Constraint\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Exception.php',
+    'PHPUnit\\Framework\\Constraint\\ExceptionCode' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionCode.php',
+    'PHPUnit\\Framework\\Constraint\\ExceptionMessage' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessage.php',
+    'PHPUnit\\Framework\\Constraint\\ExceptionMessageRegularExpression' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessageRegularExpression.php',
+    'PHPUnit\\Framework\\Constraint\\FileExists' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/FileExists.php',
+    'PHPUnit\\Framework\\Constraint\\GreaterThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/GreaterThan.php',
+    'PHPUnit\\Framework\\Constraint\\IsAnything' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsAnything.php',
+    'PHPUnit\\Framework\\Constraint\\IsEmpty' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsEmpty.php',
+    'PHPUnit\\Framework\\Constraint\\IsEqual' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsEqual.php',
+    'PHPUnit\\Framework\\Constraint\\IsFalse' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsFalse.php',
+    'PHPUnit\\Framework\\Constraint\\IsFinite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsFinite.php',
+    'PHPUnit\\Framework\\Constraint\\IsIdentical' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php',
+    'PHPUnit\\Framework\\Constraint\\IsInfinite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsInfinite.php',
+    'PHPUnit\\Framework\\Constraint\\IsInstanceOf' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsInstanceOf.php',
+    'PHPUnit\\Framework\\Constraint\\IsJson' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsJson.php',
+    'PHPUnit\\Framework\\Constraint\\IsNan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsNan.php',
+    'PHPUnit\\Framework\\Constraint\\IsNull' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsNull.php',
+    'PHPUnit\\Framework\\Constraint\\IsReadable' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsReadable.php',
+    'PHPUnit\\Framework\\Constraint\\IsTrue' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsTrue.php',
+    'PHPUnit\\Framework\\Constraint\\IsType' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsType.php',
+    'PHPUnit\\Framework\\Constraint\\IsWritable' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsWritable.php',
+    'PHPUnit\\Framework\\Constraint\\JsonMatches' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php',
+    'PHPUnit\\Framework\\Constraint\\JsonMatchesErrorMessageProvider' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatchesErrorMessageProvider.php',
+    'PHPUnit\\Framework\\Constraint\\LessThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LessThan.php',
+    'PHPUnit\\Framework\\Constraint\\LogicalAnd' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalAnd.php',
+    'PHPUnit\\Framework\\Constraint\\LogicalNot' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalNot.php',
+    'PHPUnit\\Framework\\Constraint\\LogicalOr' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalOr.php',
+    'PHPUnit\\Framework\\Constraint\\LogicalXor' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalXor.php',
+    'PHPUnit\\Framework\\Constraint\\ObjectHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ObjectHasAttribute.php',
+    'PHPUnit\\Framework\\Constraint\\RegularExpression' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/RegularExpression.php',
+    'PHPUnit\\Framework\\Constraint\\SameSize' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/SameSize.php',
+    'PHPUnit\\Framework\\Constraint\\StringContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringContains.php',
+    'PHPUnit\\Framework\\Constraint\\StringEndsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringEndsWith.php',
+    'PHPUnit\\Framework\\Constraint\\StringMatchesFormatDescription' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringMatchesFormatDescription.php',
+    'PHPUnit\\Framework\\Constraint\\StringStartsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringStartsWith.php',
+    'PHPUnit\\Framework\\Constraint\\TraversableContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/TraversableContains.php',
+    'PHPUnit\\Framework\\Constraint\\TraversableContainsOnly' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/TraversableContainsOnly.php',
+    'PHPUnit\\Framework\\CoveredCodeNotExecutedException' => $vendorDir . '/phpunit/phpunit/src/Framework/CoveredCodeNotExecutedException.php',
+    'PHPUnit\\Framework\\DataProviderTestSuite' => $vendorDir . '/phpunit/phpunit/src/Framework/DataProviderTestSuite.php',
+    'PHPUnit\\Framework\\Error\\Deprecated' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Deprecated.php',
+    'PHPUnit\\Framework\\Error\\Error' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Error.php',
+    'PHPUnit\\Framework\\Error\\Notice' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Notice.php',
+    'PHPUnit\\Framework\\Error\\Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Warning.php',
+    'PHPUnit\\Framework\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception.php',
+    'PHPUnit\\Framework\\ExceptionWrapper' => $vendorDir . '/phpunit/phpunit/src/Framework/ExceptionWrapper.php',
+    'PHPUnit\\Framework\\ExpectationFailedException' => $vendorDir . '/phpunit/phpunit/src/Framework/ExpectationFailedException.php',
+    'PHPUnit\\Framework\\IncompleteTest' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTest.php',
+    'PHPUnit\\Framework\\IncompleteTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTestCase.php',
+    'PHPUnit\\Framework\\IncompleteTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTestError.php',
+    'PHPUnit\\Framework\\InvalidCoversTargetException' => $vendorDir . '/phpunit/phpunit/src/Framework/InvalidCoversTargetException.php',
+    'PHPUnit\\Framework\\MissingCoversAnnotationException' => $vendorDir . '/phpunit/phpunit/src/Framework/MissingCoversAnnotationException.php',
+    'PHPUnit\\Framework\\MockObject\\BadMethodCallException' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Exception/BadMethodCallException.php',
+    'PHPUnit\\Framework\\MockObject\\Builder\\Identity' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/Identity.php',
+    'PHPUnit\\Framework\\MockObject\\Builder\\InvocationMocker' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/InvocationMocker.php',
+    'PHPUnit\\Framework\\MockObject\\Builder\\Match' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/Match.php',
+    'PHPUnit\\Framework\\MockObject\\Builder\\MethodNameMatch' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/MethodNameMatch.php',
+    'PHPUnit\\Framework\\MockObject\\Builder\\NamespaceMatch' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/NamespaceMatch.php',
+    'PHPUnit\\Framework\\MockObject\\Builder\\ParametersMatch' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/ParametersMatch.php',
+    'PHPUnit\\Framework\\MockObject\\Builder\\Stub' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/Stub.php',
+    'PHPUnit\\Framework\\MockObject\\Exception' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Exception/Exception.php',
+    'PHPUnit\\Framework\\MockObject\\Generator' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Generator.php',
+    'PHPUnit\\Framework\\MockObject\\Invocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Invocation/Invocation.php',
+    'PHPUnit\\Framework\\MockObject\\InvocationMocker' => $vendorDir . '/phpunit/phpunit-mock-objects/src/InvocationMocker.php',
+    'PHPUnit\\Framework\\MockObject\\Invocation\\ObjectInvocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Invocation/ObjectInvocation.php',
+    'PHPUnit\\Framework\\MockObject\\Invocation\\StaticInvocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Invocation/StaticInvocation.php',
+    'PHPUnit\\Framework\\MockObject\\Invokable' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Invokable.php',
+    'PHPUnit\\Framework\\MockObject\\Matcher' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher.php',
+    'PHPUnit\\Framework\\MockObject\\Matcher\\AnyInvokedCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/AnyInvokedCount.php',
+    'PHPUnit\\Framework\\MockObject\\Matcher\\AnyParameters' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/AnyParameters.php',
+    'PHPUnit\\Framework\\MockObject\\Matcher\\ConsecutiveParameters' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/ConsecutiveParameters.php',
+    'PHPUnit\\Framework\\MockObject\\Matcher\\Invocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/Invocation.php',
+    'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtIndex' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtIndex.php',
+    'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtLeastCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtLeastCount.php',
+    'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtLeastOnce' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtLeastOnce.php',
+    'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtMostCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtMostCount.php',
+    'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedCount.php',
+    'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedRecorder' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedRecorder.php',
+    'PHPUnit\\Framework\\MockObject\\Matcher\\MethodName' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/MethodName.php',
+    'PHPUnit\\Framework\\MockObject\\Matcher\\Parameters' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/Parameters.php',
+    'PHPUnit\\Framework\\MockObject\\Matcher\\StatelessInvocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/StatelessInvocation.php',
+    'PHPUnit\\Framework\\MockObject\\MockBuilder' => $vendorDir . '/phpunit/phpunit-mock-objects/src/MockBuilder.php',
+    'PHPUnit\\Framework\\MockObject\\MockObject' => $vendorDir . '/phpunit/phpunit-mock-objects/src/ForwardCompatibility/MockObject.php',
+    'PHPUnit\\Framework\\MockObject\\RuntimeException' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Exception/RuntimeException.php',
+    'PHPUnit\\Framework\\MockObject\\Stub' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub.php',
+    'PHPUnit\\Framework\\MockObject\\Stub\\ConsecutiveCalls' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ConsecutiveCalls.php',
+    'PHPUnit\\Framework\\MockObject\\Stub\\Exception' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/Exception.php',
+    'PHPUnit\\Framework\\MockObject\\Stub\\MatcherCollection' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/MatcherCollection.php',
+    'PHPUnit\\Framework\\MockObject\\Stub\\ReturnArgument' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ReturnArgument.php',
+    'PHPUnit\\Framework\\MockObject\\Stub\\ReturnCallback' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ReturnCallback.php',
+    'PHPUnit\\Framework\\MockObject\\Stub\\ReturnReference' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ReturnReference.php',
+    'PHPUnit\\Framework\\MockObject\\Stub\\ReturnSelf' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ReturnSelf.php',
+    'PHPUnit\\Framework\\MockObject\\Stub\\ReturnStub' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ReturnStub.php',
+    'PHPUnit\\Framework\\MockObject\\Stub\\ReturnValueMap' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ReturnValueMap.php',
+    'PHPUnit\\Framework\\MockObject\\Verifiable' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Verifiable.php',
+    'PHPUnit\\Framework\\OutputError' => $vendorDir . '/phpunit/phpunit/src/Framework/OutputError.php',
+    'PHPUnit\\Framework\\RiskyTest' => $vendorDir . '/phpunit/phpunit/src/Framework/RiskyTest.php',
+    'PHPUnit\\Framework\\RiskyTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/RiskyTestError.php',
+    'PHPUnit\\Framework\\SelfDescribing' => $vendorDir . '/phpunit/phpunit/src/Framework/SelfDescribing.php',
+    'PHPUnit\\Framework\\SkippedTest' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTest.php',
+    'PHPUnit\\Framework\\SkippedTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestCase.php',
+    'PHPUnit\\Framework\\SkippedTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestError.php',
+    'PHPUnit\\Framework\\SkippedTestSuiteError' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestSuiteError.php',
+    'PHPUnit\\Framework\\SyntheticError' => $vendorDir . '/phpunit/phpunit/src/Framework/SyntheticError.php',
+    'PHPUnit\\Framework\\Test' => $vendorDir . '/phpunit/phpunit/src/Framework/Test.php',
+    'PHPUnit\\Framework\\TestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/TestCase.php',
+    'PHPUnit\\Framework\\TestFailure' => $vendorDir . '/phpunit/phpunit/src/Framework/TestFailure.php',
+    'PHPUnit\\Framework\\TestListener' => $vendorDir . '/phpunit/phpunit/src/Framework/TestListener.php',
+    'PHPUnit\\Framework\\TestListenerDefaultImplementation' => $vendorDir . '/phpunit/phpunit/src/Framework/TestListenerDefaultImplementation.php',
+    'PHPUnit\\Framework\\TestResult' => $vendorDir . '/phpunit/phpunit/src/Framework/TestResult.php',
+    'PHPUnit\\Framework\\TestSuite' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuite.php',
+    'PHPUnit\\Framework\\TestSuiteIterator' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuiteIterator.php',
+    'PHPUnit\\Framework\\UnintentionallyCoveredCodeError' => $vendorDir . '/phpunit/phpunit/src/Framework/UnintentionallyCoveredCodeError.php',
+    'PHPUnit\\Framework\\Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Warning.php',
+    'PHPUnit\\Framework\\WarningTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/WarningTestCase.php',
+    'PHPUnit\\Runner\\BaseTestRunner' => $vendorDir . '/phpunit/phpunit/src/Runner/BaseTestRunner.php',
+    'PHPUnit\\Runner\\Exception' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception.php',
+    'PHPUnit\\Runner\\Filter\\ExcludeGroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/ExcludeGroupFilterIterator.php',
+    'PHPUnit\\Runner\\Filter\\Factory' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Factory.php',
+    'PHPUnit\\Runner\\Filter\\GroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/GroupFilterIterator.php',
+    'PHPUnit\\Runner\\Filter\\IncludeGroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/IncludeGroupFilterIterator.php',
+    'PHPUnit\\Runner\\Filter\\NameFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/NameFilterIterator.php',
+    'PHPUnit\\Runner\\PhptTestCase' => $vendorDir . '/phpunit/phpunit/src/Runner/PhptTestCase.php',
+    'PHPUnit\\Runner\\StandardTestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/StandardTestSuiteLoader.php',
+    'PHPUnit\\Runner\\TestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/TestSuiteLoader.php',
+    'PHPUnit\\Runner\\Version' => $vendorDir . '/phpunit/phpunit/src/Runner/Version.php',
+    'PHPUnit\\TextUI\\Command' => $vendorDir . '/phpunit/phpunit/src/TextUI/Command.php',
+    'PHPUnit\\TextUI\\ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/TextUI/ResultPrinter.php',
+    'PHPUnit\\TextUI\\TestRunner' => $vendorDir . '/phpunit/phpunit/src/TextUI/TestRunner.php',
+    'PHPUnit\\Util\\Blacklist' => $vendorDir . '/phpunit/phpunit/src/Util/Blacklist.php',
+    'PHPUnit\\Util\\Configuration' => $vendorDir . '/phpunit/phpunit/src/Util/Configuration.php',
+    'PHPUnit\\Util\\ConfigurationGenerator' => $vendorDir . '/phpunit/phpunit/src/Util/ConfigurationGenerator.php',
+    'PHPUnit\\Util\\ErrorHandler' => $vendorDir . '/phpunit/phpunit/src/Util/ErrorHandler.php',
+    'PHPUnit\\Util\\Fileloader' => $vendorDir . '/phpunit/phpunit/src/Util/Fileloader.php',
+    'PHPUnit\\Util\\Filesystem' => $vendorDir . '/phpunit/phpunit/src/Util/Filesystem.php',
+    'PHPUnit\\Util\\Filter' => $vendorDir . '/phpunit/phpunit/src/Util/Filter.php',
+    'PHPUnit\\Util\\Getopt' => $vendorDir . '/phpunit/phpunit/src/Util/Getopt.php',
+    'PHPUnit\\Util\\GlobalState' => $vendorDir . '/phpunit/phpunit/src/Util/GlobalState.php',
+    'PHPUnit\\Util\\InvalidArgumentHelper' => $vendorDir . '/phpunit/phpunit/src/Util/InvalidArgumentHelper.php',
+    'PHPUnit\\Util\\Json' => $vendorDir . '/phpunit/phpunit/src/Util/Json.php',
+    'PHPUnit\\Util\\Log\\JUnit' => $vendorDir . '/phpunit/phpunit/src/Util/Log/JUnit.php',
+    'PHPUnit\\Util\\Log\\TeamCity' => $vendorDir . '/phpunit/phpunit/src/Util/Log/TeamCity.php',
+    'PHPUnit\\Util\\PHP\\AbstractPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/AbstractPhpProcess.php',
+    'PHPUnit\\Util\\PHP\\DefaultPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/DefaultPhpProcess.php',
+    'PHPUnit\\Util\\PHP\\WindowsPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/WindowsPhpProcess.php',
+    'PHPUnit\\Util\\Printer' => $vendorDir . '/phpunit/phpunit/src/Util/Printer.php',
+    'PHPUnit\\Util\\RegularExpression' => $vendorDir . '/phpunit/phpunit/src/Util/RegularExpression.php',
+    'PHPUnit\\Util\\Test' => $vendorDir . '/phpunit/phpunit/src/Util/Test.php',
+    'PHPUnit\\Util\\TestDox\\HtmlResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/HtmlResultPrinter.php',
+    'PHPUnit\\Util\\TestDox\\NamePrettifier' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/NamePrettifier.php',
+    'PHPUnit\\Util\\TestDox\\ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter.php',
+    'PHPUnit\\Util\\TestDox\\TextResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/TextResultPrinter.php',
+    'PHPUnit\\Util\\TestDox\\XmlResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/XmlResultPrinter.php',
+    'PHPUnit\\Util\\TextTestListRenderer' => $vendorDir . '/phpunit/phpunit/src/Util/TextTestListRenderer.php',
+    'PHPUnit\\Util\\Type' => $vendorDir . '/phpunit/phpunit/src/Util/Type.php',
+    'PHPUnit\\Util\\Xml' => $vendorDir . '/phpunit/phpunit/src/Util/Xml.php',
+    'PHPUnit\\Util\\XmlTestListRenderer' => $vendorDir . '/phpunit/phpunit/src/Util/XmlTestListRenderer.php',
+    'PHPUnit_Framework_MockObject_MockObject' => $vendorDir . '/phpunit/phpunit-mock-objects/src/MockObject.php',
+    'PHP_Timer' => $vendorDir . '/phpunit/php-timer/src/Timer.php',
+    'PHP_Token' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_TokenWithScope' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_TokenWithScopeAndVisibility' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_ABSTRACT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_AMPERSAND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_AND_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_ARRAY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_ARRAY_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_AS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_ASYNC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_AT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_AWAIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_BACKTICK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_BAD_CHARACTER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_BOOLEAN_AND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_BOOLEAN_OR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_BOOL_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_BREAK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_CALLABLE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_CARET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_CASE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_CATCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_CHARACTER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_CLASS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_CLASS_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_CLASS_NAME_CONSTANT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_CLONE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_CLOSE_BRACKET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_CLOSE_CURLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_CLOSE_SQUARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_CLOSE_TAG' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_COALESCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_COLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_COMMA' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_COMMENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_COMPILER_HALT_OFFSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_CONCAT_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_CONST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_CONSTANT_ENCAPSED_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_CONTINUE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_CURLY_OPEN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_DEC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_DECLARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_DEFAULT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_DIR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_DIV' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_DIV_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_DNUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_DO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_DOC_COMMENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_DOLLAR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_DOLLAR_OPEN_CURLY_BRACES' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_DOT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_DOUBLE_ARROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_DOUBLE_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_DOUBLE_COLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_DOUBLE_QUOTES' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_ECHO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_ELLIPSIS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_ELSE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_ELSEIF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_EMPTY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_ENCAPSED_AND_WHITESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_ENDDECLARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_ENDFOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_ENDFOREACH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_ENDIF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_ENDSWITCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_ENDWHILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_END_HEREDOC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_ENUM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_EQUALS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_EVAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_EXCLAMATION_MARK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_EXIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_EXTENDS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_FILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_FINAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_FINALLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_FOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_FOREACH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_FUNCTION' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_FUNC_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_GLOBAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_GOTO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_GT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_HALT_COMPILER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_IF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_IMPLEMENTS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_IN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_INC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_INCLUDE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_INCLUDE_ONCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_INLINE_HTML' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_INSTANCEOF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_INSTEADOF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_INTERFACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_INT_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_ISSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_IS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_IS_GREATER_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_IS_IDENTICAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_IS_NOT_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_IS_NOT_IDENTICAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_IS_SMALLER_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_Includes' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_JOIN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_LAMBDA_ARROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_LAMBDA_CP' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_LAMBDA_OP' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_LINE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_LIST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_LNUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_LOGICAL_AND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_LOGICAL_OR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_LOGICAL_XOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_LT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_METHOD_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_MINUS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_MINUS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_MOD_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_MULT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_MUL_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_NAMESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_NEW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_NS_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_NS_SEPARATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_NULLSAFE_OBJECT_OPERATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_NUM_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_OBJECT_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_OBJECT_OPERATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_ONUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_OPEN_BRACKET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_OPEN_CURLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_OPEN_SQUARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_OPEN_TAG' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_OPEN_TAG_WITH_ECHO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_PAAMAYIM_NEKUDOTAYIM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_PERCENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_PIPE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_PLUS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_PLUS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_POW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_POW_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_PRINT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_PRIVATE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_PROTECTED' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_PUBLIC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_QUESTION_MARK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_REQUIRE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_REQUIRE_ONCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_RETURN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_SEMICOLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_SHAPE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_SL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_SL_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_SPACESHIP' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_SR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_SR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_START_HEREDOC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_STATIC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_STRING_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_STRING_VARNAME' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_SUPER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_SWITCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_Stream' => $vendorDir . '/phpunit/php-token-stream/src/Token/Stream.php',
+    'PHP_Token_Stream_CachingFactory' => $vendorDir . '/phpunit/php-token-stream/src/Token/Stream/CachingFactory.php',
+    'PHP_Token_THROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_TILDE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_TRAIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_TRAIT_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_TRY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_TYPE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_TYPELIST_GT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_TYPELIST_LT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_UNSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_UNSET_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_USE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_USE_FUNCTION' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_VAR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_VARIABLE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_WHERE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_WHILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_WHITESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_XHP_ATTRIBUTE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_XHP_CATEGORY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_XHP_CATEGORY_LABEL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_XHP_CHILDREN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_XHP_LABEL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_XHP_REQUIRED' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_XHP_TAG_GT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_XHP_TAG_LT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_XHP_TEXT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_XOR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_YIELD' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'PHP_Token_YIELD_FROM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
+    'ParseError' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/ParseError.php',
+    'PharIo\\Manifest\\Application' => $vendorDir . '/phar-io/manifest/src/values/Application.php',
+    'PharIo\\Manifest\\ApplicationName' => $vendorDir . '/phar-io/manifest/src/values/ApplicationName.php',
+    'PharIo\\Manifest\\Author' => $vendorDir . '/phar-io/manifest/src/values/Author.php',
+    'PharIo\\Manifest\\AuthorCollection' => $vendorDir . '/phar-io/manifest/src/values/AuthorCollection.php',
+    'PharIo\\Manifest\\AuthorCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/AuthorCollectionIterator.php',
+    'PharIo\\Manifest\\AuthorElement' => $vendorDir . '/phar-io/manifest/src/xml/AuthorElement.php',
+    'PharIo\\Manifest\\AuthorElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/AuthorElementCollection.php',
+    'PharIo\\Manifest\\BundledComponent' => $vendorDir . '/phar-io/manifest/src/values/BundledComponent.php',
+    'PharIo\\Manifest\\BundledComponentCollection' => $vendorDir . '/phar-io/manifest/src/values/BundledComponentCollection.php',
+    'PharIo\\Manifest\\BundledComponentCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/BundledComponentCollectionIterator.php',
+    'PharIo\\Manifest\\BundlesElement' => $vendorDir . '/phar-io/manifest/src/xml/BundlesElement.php',
+    'PharIo\\Manifest\\ComponentElement' => $vendorDir . '/phar-io/manifest/src/xml/ComponentElement.php',
+    'PharIo\\Manifest\\ComponentElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ComponentElementCollection.php',
+    'PharIo\\Manifest\\ContainsElement' => $vendorDir . '/phar-io/manifest/src/xml/ContainsElement.php',
+    'PharIo\\Manifest\\CopyrightElement' => $vendorDir . '/phar-io/manifest/src/xml/CopyrightElement.php',
+    'PharIo\\Manifest\\CopyrightInformation' => $vendorDir . '/phar-io/manifest/src/values/CopyrightInformation.php',
+    'PharIo\\Manifest\\ElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ElementCollection.php',
+    'PharIo\\Manifest\\Email' => $vendorDir . '/phar-io/manifest/src/values/Email.php',
+    'PharIo\\Manifest\\Exception' => $vendorDir . '/phar-io/manifest/src/exceptions/Exception.php',
+    'PharIo\\Manifest\\ExtElement' => $vendorDir . '/phar-io/manifest/src/xml/ExtElement.php',
+    'PharIo\\Manifest\\ExtElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ExtElementCollection.php',
+    'PharIo\\Manifest\\Extension' => $vendorDir . '/phar-io/manifest/src/values/Extension.php',
+    'PharIo\\Manifest\\ExtensionElement' => $vendorDir . '/phar-io/manifest/src/xml/ExtensionElement.php',
+    'PharIo\\Manifest\\InvalidApplicationNameException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php',
+    'PharIo\\Manifest\\InvalidEmailException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidEmailException.php',
+    'PharIo\\Manifest\\InvalidUrlException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidUrlException.php',
+    'PharIo\\Manifest\\Library' => $vendorDir . '/phar-io/manifest/src/values/Library.php',
+    'PharIo\\Manifest\\License' => $vendorDir . '/phar-io/manifest/src/values/License.php',
+    'PharIo\\Manifest\\LicenseElement' => $vendorDir . '/phar-io/manifest/src/xml/LicenseElement.php',
+    'PharIo\\Manifest\\Manifest' => $vendorDir . '/phar-io/manifest/src/values/Manifest.php',
+    'PharIo\\Manifest\\ManifestDocument' => $vendorDir . '/phar-io/manifest/src/xml/ManifestDocument.php',
+    'PharIo\\Manifest\\ManifestDocumentException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestDocumentException.php',
+    'PharIo\\Manifest\\ManifestDocumentLoadingException' => $vendorDir . '/phar-io/manifest/src/xml/ManifestDocumentLoadingException.php',
+    'PharIo\\Manifest\\ManifestDocumentMapper' => $vendorDir . '/phar-io/manifest/src/ManifestDocumentMapper.php',
+    'PharIo\\Manifest\\ManifestDocumentMapperException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php',
+    'PharIo\\Manifest\\ManifestElement' => $vendorDir . '/phar-io/manifest/src/xml/ManifestElement.php',
+    'PharIo\\Manifest\\ManifestElementException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestElementException.php',
+    'PharIo\\Manifest\\ManifestLoader' => $vendorDir . '/phar-io/manifest/src/ManifestLoader.php',
+    'PharIo\\Manifest\\ManifestLoaderException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestLoaderException.php',
+    'PharIo\\Manifest\\ManifestSerializer' => $vendorDir . '/phar-io/manifest/src/ManifestSerializer.php',
+    'PharIo\\Manifest\\PhpElement' => $vendorDir . '/phar-io/manifest/src/xml/PhpElement.php',
+    'PharIo\\Manifest\\PhpExtensionRequirement' => $vendorDir . '/phar-io/manifest/src/values/PhpExtensionRequirement.php',
+    'PharIo\\Manifest\\PhpVersionRequirement' => $vendorDir . '/phar-io/manifest/src/values/PhpVersionRequirement.php',
+    'PharIo\\Manifest\\Requirement' => $vendorDir . '/phar-io/manifest/src/values/Requirement.php',
+    'PharIo\\Manifest\\RequirementCollection' => $vendorDir . '/phar-io/manifest/src/values/RequirementCollection.php',
+    'PharIo\\Manifest\\RequirementCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/RequirementCollectionIterator.php',
+    'PharIo\\Manifest\\RequiresElement' => $vendorDir . '/phar-io/manifest/src/xml/RequiresElement.php',
+    'PharIo\\Manifest\\Type' => $vendorDir . '/phar-io/manifest/src/values/Type.php',
+    'PharIo\\Manifest\\Url' => $vendorDir . '/phar-io/manifest/src/values/Url.php',
+    'PharIo\\Version\\AbstractVersionConstraint' => $vendorDir . '/phar-io/version/src/AbstractVersionConstraint.php',
+    'PharIo\\Version\\AndVersionConstraintGroup' => $vendorDir . '/phar-io/version/src/AndVersionConstraintGroup.php',
+    'PharIo\\Version\\AnyVersionConstraint' => $vendorDir . '/phar-io/version/src/AnyVersionConstraint.php',
+    'PharIo\\Version\\ExactVersionConstraint' => $vendorDir . '/phar-io/version/src/ExactVersionConstraint.php',
+    'PharIo\\Version\\Exception' => $vendorDir . '/phar-io/version/src/Exception.php',
+    'PharIo\\Version\\GreaterThanOrEqualToVersionConstraint' => $vendorDir . '/phar-io/version/src/GreaterThanOrEqualToVersionConstraint.php',
+    'PharIo\\Version\\InvalidVersionException' => $vendorDir . '/phar-io/version/src/InvalidVersionException.php',
+    'PharIo\\Version\\OrVersionConstraintGroup' => $vendorDir . '/phar-io/version/src/OrVersionConstraintGroup.php',
+    'PharIo\\Version\\PreReleaseSuffix' => $vendorDir . '/phar-io/version/src/PreReleaseSuffix.php',
+    'PharIo\\Version\\SpecificMajorAndMinorVersionConstraint' => $vendorDir . '/phar-io/version/src/SpecificMajorAndMinorVersionConstraint.php',
+    'PharIo\\Version\\SpecificMajorVersionConstraint' => $vendorDir . '/phar-io/version/src/SpecificMajorVersionConstraint.php',
+    'PharIo\\Version\\UnsupportedVersionConstraintException' => $vendorDir . '/phar-io/version/src/UnsupportedVersionConstraintException.php',
+    'PharIo\\Version\\Version' => $vendorDir . '/phar-io/version/src/Version.php',
+    'PharIo\\Version\\VersionConstraint' => $vendorDir . '/phar-io/version/src/VersionConstraint.php',
+    'PharIo\\Version\\VersionConstraintParser' => $vendorDir . '/phar-io/version/src/VersionConstraintParser.php',
+    'PharIo\\Version\\VersionConstraintValue' => $vendorDir . '/phar-io/version/src/VersionConstraintValue.php',
+    'PharIo\\Version\\VersionNumber' => $vendorDir . '/phar-io/version/src/VersionNumber.php',
+    'QrReader' => $baseDir . '/app/libs/qrlib/QrReader.php',
+    'SebastianBergmann\\CodeCoverage\\CodeCoverage' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage.php',
+    'SebastianBergmann\\CodeCoverage\\CoveredCodeNotExecutedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/CoveredCodeNotExecutedException.php',
+    'SebastianBergmann\\CodeCoverage\\Driver\\Driver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Driver.php',
+    'SebastianBergmann\\CodeCoverage\\Driver\\HHVM' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/HHVM.php',
+    'SebastianBergmann\\CodeCoverage\\Driver\\PHPDBG' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/PHPDBG.php',
+    'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Xdebug.php',
+    'SebastianBergmann\\CodeCoverage\\Exception' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/Exception.php',
+    'SebastianBergmann\\CodeCoverage\\Filter' => $vendorDir . '/phpunit/php-code-coverage/src/Filter.php',
+    'SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php',
+    'SebastianBergmann\\CodeCoverage\\MissingCoversAnnotationException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/MissingCoversAnnotationException.php',
+    'SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => $vendorDir . '/phpunit/php-code-coverage/src/Node/AbstractNode.php',
+    'SebastianBergmann\\CodeCoverage\\Node\\Builder' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Builder.php',
+    'SebastianBergmann\\CodeCoverage\\Node\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Directory.php',
+    'SebastianBergmann\\CodeCoverage\\Node\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Node/File.php',
+    'SebastianBergmann\\CodeCoverage\\Node\\Iterator' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Iterator.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Clover' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Clover.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Crap4j.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Facade.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\PHP' => $vendorDir . '/phpunit/php-code-coverage/src/Report/PHP.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Text' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Text.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Xml\\BuildInformation' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/BuildInformation.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Coverage.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Directory.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Facade.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/File.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Method.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Node.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Project.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Report.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Source' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Source.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Tests.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Totals.php',
+    'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Unit.php',
+    'SebastianBergmann\\CodeCoverage\\RuntimeException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/RuntimeException.php',
+    'SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php',
+    'SebastianBergmann\\CodeCoverage\\Util' => $vendorDir . '/phpunit/php-code-coverage/src/Util.php',
+    'SebastianBergmann\\CodeCoverage\\Version' => $vendorDir . '/phpunit/php-code-coverage/src/Version.php',
+    'SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => $vendorDir . '/sebastian/code-unit-reverse-lookup/src/Wizard.php',
+    'SebastianBergmann\\Comparator\\ArrayComparator' => $vendorDir . '/sebastian/comparator/src/ArrayComparator.php',
+    'SebastianBergmann\\Comparator\\Comparator' => $vendorDir . '/sebastian/comparator/src/Comparator.php',
+    'SebastianBergmann\\Comparator\\ComparisonFailure' => $vendorDir . '/sebastian/comparator/src/ComparisonFailure.php',
+    'SebastianBergmann\\Comparator\\DOMNodeComparator' => $vendorDir . '/sebastian/comparator/src/DOMNodeComparator.php',
+    'SebastianBergmann\\Comparator\\DateTimeComparator' => $vendorDir . '/sebastian/comparator/src/DateTimeComparator.php',
+    'SebastianBergmann\\Comparator\\DoubleComparator' => $vendorDir . '/sebastian/comparator/src/DoubleComparator.php',
+    'SebastianBergmann\\Comparator\\ExceptionComparator' => $vendorDir . '/sebastian/comparator/src/ExceptionComparator.php',
+    'SebastianBergmann\\Comparator\\Factory' => $vendorDir . '/sebastian/comparator/src/Factory.php',
+    'SebastianBergmann\\Comparator\\MockObjectComparator' => $vendorDir . '/sebastian/comparator/src/MockObjectComparator.php',
+    'SebastianBergmann\\Comparator\\NumericComparator' => $vendorDir . '/sebastian/comparator/src/NumericComparator.php',
+    'SebastianBergmann\\Comparator\\ObjectComparator' => $vendorDir . '/sebastian/comparator/src/ObjectComparator.php',
+    'SebastianBergmann\\Comparator\\ResourceComparator' => $vendorDir . '/sebastian/comparator/src/ResourceComparator.php',
+    'SebastianBergmann\\Comparator\\ScalarComparator' => $vendorDir . '/sebastian/comparator/src/ScalarComparator.php',
+    'SebastianBergmann\\Comparator\\SplObjectStorageComparator' => $vendorDir . '/sebastian/comparator/src/SplObjectStorageComparator.php',
+    'SebastianBergmann\\Comparator\\TypeComparator' => $vendorDir . '/sebastian/comparator/src/TypeComparator.php',
+    'SebastianBergmann\\Diff\\Chunk' => $vendorDir . '/sebastian/diff/src/Chunk.php',
+    'SebastianBergmann\\Diff\\Diff' => $vendorDir . '/sebastian/diff/src/Diff.php',
+    'SebastianBergmann\\Diff\\Differ' => $vendorDir . '/sebastian/diff/src/Differ.php',
+    'SebastianBergmann\\Diff\\Exception' => $vendorDir . '/sebastian/diff/src/Exception/Exception.php',
+    'SebastianBergmann\\Diff\\InvalidArgumentException' => $vendorDir . '/sebastian/diff/src/Exception/InvalidArgumentException.php',
+    'SebastianBergmann\\Diff\\Line' => $vendorDir . '/sebastian/diff/src/Line.php',
+    'SebastianBergmann\\Diff\\LongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/LongestCommonSubsequenceCalculator.php',
+    'SebastianBergmann\\Diff\\MemoryEfficientLongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php',
+    'SebastianBergmann\\Diff\\Output\\AbstractChunkOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php',
+    'SebastianBergmann\\Diff\\Output\\DiffOnlyOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php',
+    'SebastianBergmann\\Diff\\Output\\DiffOutputBuilderInterface' => $vendorDir . '/sebastian/diff/src/Output/DiffOutputBuilderInterface.php',
+    'SebastianBergmann\\Diff\\Output\\UnifiedDiffOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php',
+    'SebastianBergmann\\Diff\\Parser' => $vendorDir . '/sebastian/diff/src/Parser.php',
+    'SebastianBergmann\\Diff\\TimeEfficientLongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php',
+    'SebastianBergmann\\Environment\\Console' => $vendorDir . '/sebastian/environment/src/Console.php',
+    'SebastianBergmann\\Environment\\OperatingSystem' => $vendorDir . '/sebastian/environment/src/OperatingSystem.php',
+    'SebastianBergmann\\Environment\\Runtime' => $vendorDir . '/sebastian/environment/src/Runtime.php',
+    'SebastianBergmann\\Exporter\\Exporter' => $vendorDir . '/sebastian/exporter/src/Exporter.php',
+    'SebastianBergmann\\GlobalState\\Blacklist' => $vendorDir . '/sebastian/global-state/src/Blacklist.php',
+    'SebastianBergmann\\GlobalState\\CodeExporter' => $vendorDir . '/sebastian/global-state/src/CodeExporter.php',
+    'SebastianBergmann\\GlobalState\\Exception' => $vendorDir . '/sebastian/global-state/src/exceptions/Exception.php',
+    'SebastianBergmann\\GlobalState\\Restorer' => $vendorDir . '/sebastian/global-state/src/Restorer.php',
+    'SebastianBergmann\\GlobalState\\RuntimeException' => $vendorDir . '/sebastian/global-state/src/exceptions/RuntimeException.php',
+    'SebastianBergmann\\GlobalState\\Snapshot' => $vendorDir . '/sebastian/global-state/src/Snapshot.php',
+    'SebastianBergmann\\ObjectEnumerator\\Enumerator' => $vendorDir . '/sebastian/object-enumerator/src/Enumerator.php',
+    'SebastianBergmann\\ObjectEnumerator\\Exception' => $vendorDir . '/sebastian/object-enumerator/src/Exception.php',
+    'SebastianBergmann\\ObjectEnumerator\\InvalidArgumentException' => $vendorDir . '/sebastian/object-enumerator/src/InvalidArgumentException.php',
+    'SebastianBergmann\\ObjectReflector\\Exception' => $vendorDir . '/sebastian/object-reflector/src/Exception.php',
+    'SebastianBergmann\\ObjectReflector\\InvalidArgumentException' => $vendorDir . '/sebastian/object-reflector/src/InvalidArgumentException.php',
+    'SebastianBergmann\\ObjectReflector\\ObjectReflector' => $vendorDir . '/sebastian/object-reflector/src/ObjectReflector.php',
+    'SebastianBergmann\\RecursionContext\\Context' => $vendorDir . '/sebastian/recursion-context/src/Context.php',
+    'SebastianBergmann\\RecursionContext\\Exception' => $vendorDir . '/sebastian/recursion-context/src/Exception.php',
+    'SebastianBergmann\\RecursionContext\\InvalidArgumentException' => $vendorDir . '/sebastian/recursion-context/src/InvalidArgumentException.php',
+    'SebastianBergmann\\ResourceOperations\\ResourceOperations' => $vendorDir . '/sebastian/resource-operations/src/ResourceOperations.php',
+    'SebastianBergmann\\Version' => $vendorDir . '/sebastian/version/src/Version.php',
+    'SessionUpdateTimestampHandlerInterface' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php',
+    'Text_Template' => $vendorDir . '/phpunit/php-text-template/src/Template.php',
+    'TheSeer\\Tokenizer\\Exception' => $vendorDir . '/theseer/tokenizer/src/Exception.php',
+    'TheSeer\\Tokenizer\\NamespaceUri' => $vendorDir . '/theseer/tokenizer/src/NamespaceUri.php',
+    'TheSeer\\Tokenizer\\NamespaceUriException' => $vendorDir . '/theseer/tokenizer/src/NamespaceUriException.php',
+    'TheSeer\\Tokenizer\\Token' => $vendorDir . '/theseer/tokenizer/src/Token.php',
+    'TheSeer\\Tokenizer\\TokenCollection' => $vendorDir . '/theseer/tokenizer/src/TokenCollection.php',
+    'TheSeer\\Tokenizer\\TokenCollectionException' => $vendorDir . '/theseer/tokenizer/src/TokenCollectionException.php',
+    'TheSeer\\Tokenizer\\Tokenizer' => $vendorDir . '/theseer/tokenizer/src/Tokenizer.php',
+    'TheSeer\\Tokenizer\\XMLSerializer' => $vendorDir . '/theseer/tokenizer/src/XMLSerializer.php',
+    'TypeError' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/TypeError.php',
+    'WXBizDataCrypt' => $baseDir . '/app/Helper/wxbdc/WXBizDataCrypt.php',
+    'Zxing\\Binarizer' => $baseDir . '/app/libs/qrlib/Binarizer.php',
+    'Zxing\\BinaryBitmap' => $baseDir . '/app/libs/qrlib/BinaryBitmap.php',
+    'Zxing\\ChecksumException' => $baseDir . '/app/libs/qrlib/ChecksumException.php',
+    'Zxing\\Common\\BitArray' => $baseDir . '/app/libs/qrlib/common/BitArray.php',
+    'Zxing\\Common\\BitMatrix' => $baseDir . '/app/libs/qrlib/common/BitMatrix.php',
+    'Zxing\\Common\\BitSource' => $baseDir . '/app/libs/qrlib/common/BitSource.php',
+    'Zxing\\Common\\CharacterSetECI' => $baseDir . '/app/libs/qrlib/common/CharacterSetEci.php',
+    'Zxing\\Common\\CharacterSetEci\\AbstractEnum\\AbstractEnum' => $baseDir . '/app/libs/qrlib/common/AbstractEnum.php',
+    'Zxing\\Common\\DecoderResult' => $baseDir . '/app/libs/qrlib/common/DecoderResult.php',
+    'Zxing\\Common\\DefaultGridSampler' => $baseDir . '/app/libs/qrlib/common/DefaultGridSampler.php',
+    'Zxing\\Common\\DetectorResult' => $baseDir . '/app/libs/qrlib/common/DetectorResult.php',
+    'Zxing\\Common\\Detector\\MathUtils' => $baseDir . '/app/libs/qrlib/common/detector/MathUtils.php',
+    'Zxing\\Common\\Detector\\MonochromeRectangleDetector' => $baseDir . '/app/libs/qrlib/common/detector/MonochromeRectangleDetector.php',
+    'Zxing\\Common\\GlobalHistogramBinarizer' => $baseDir . '/app/libs/qrlib/common/GlobalHistogramBinarizer.php',
+    'Zxing\\Common\\GridSampler' => $baseDir . '/app/libs/qrlib/common/GridSampler.php',
+    'Zxing\\Common\\HybridBinarizer' => $baseDir . '/app/libs/qrlib/common/HybridBinarizer.php',
+    'Zxing\\Common\\PerspectiveTransform' => $baseDir . '/app/libs/qrlib/common/PerspectiveTransform.php',
+    'Zxing\\Common\\Reedsolomon\\GenericGF' => $baseDir . '/app/libs/qrlib/common/reedsolomon/GenericGF.php',
+    'Zxing\\Common\\Reedsolomon\\GenericGFPoly' => $baseDir . '/app/libs/qrlib/common/reedsolomon/GenericGFPoly.php',
+    'Zxing\\Common\\Reedsolomon\\ReedSolomonDecoder' => $baseDir . '/app/libs/qrlib/common/reedsolomon/ReedSolomonDecoder.php',
+    'Zxing\\Common\\Reedsolomon\\ReedSolomonException' => $baseDir . '/app/libs/qrlib/common/reedsolomon/ReedSolomonException.php',
+    'Zxing\\FormatException' => $baseDir . '/app/libs/qrlib/FormatException.php',
+    'Zxing\\GDLuminanceSource' => $baseDir . '/app/libs/qrlib/GDLuminanceSource.php',
+    'Zxing\\IMagickLuminanceSource' => $baseDir . '/app/libs/qrlib/IMagickLuminanceSource.php',
+    'Zxing\\LuminanceSource' => $baseDir . '/app/libs/qrlib/LuminanceSource.php',
+    'Zxing\\NotFoundException' => $baseDir . '/app/libs/qrlib/NotFoundException.php',
+    'Zxing\\PlanarYUVLuminanceSource' => $baseDir . '/app/libs/qrlib/PlanarYUVLuminanceSource.php',
+    'Zxing\\Qrcode\\Decoder\\BitMatrixParser' => $baseDir . '/app/libs/qrlib/qrcode/decoder/BitMatrixParser.php',
+    'Zxing\\Qrcode\\Decoder\\DataBlock' => $baseDir . '/app/libs/qrlib/qrcode/decoder/DataBlock.php',
+    'Zxing\\Qrcode\\Decoder\\DataMask' => $baseDir . '/app/libs/qrlib/qrcode/decoder/DataMask.php',
+    'Zxing\\Qrcode\\Decoder\\DataMask000' => $baseDir . '/app/libs/qrlib/qrcode/decoder/DataMask.php',
+    'Zxing\\Qrcode\\Decoder\\DataMask001' => $baseDir . '/app/libs/qrlib/qrcode/decoder/DataMask.php',
+    'Zxing\\Qrcode\\Decoder\\DataMask010' => $baseDir . '/app/libs/qrlib/qrcode/decoder/DataMask.php',
+    'Zxing\\Qrcode\\Decoder\\DataMask011' => $baseDir . '/app/libs/qrlib/qrcode/decoder/DataMask.php',
+    'Zxing\\Qrcode\\Decoder\\DataMask100' => $baseDir . '/app/libs/qrlib/qrcode/decoder/DataMask.php',
+    'Zxing\\Qrcode\\Decoder\\DataMask101' => $baseDir . '/app/libs/qrlib/qrcode/decoder/DataMask.php',
+    'Zxing\\Qrcode\\Decoder\\DataMask110' => $baseDir . '/app/libs/qrlib/qrcode/decoder/DataMask.php',
+    'Zxing\\Qrcode\\Decoder\\DataMask111' => $baseDir . '/app/libs/qrlib/qrcode/decoder/DataMask.php',
+    'Zxing\\Qrcode\\Decoder\\DecodedBitStreamParser' => $baseDir . '/app/libs/qrlib/qrcode/decoder/DecodedBitStreamParser.php',
+    'Zxing\\Qrcode\\Decoder\\Decoder' => $baseDir . '/app/libs/qrlib/qrcode/decoder/Decoder.php',
+    'Zxing\\Qrcode\\Decoder\\ECB' => $baseDir . '/app/libs/qrlib/qrcode/decoder/Version.php',
+    'Zxing\\Qrcode\\Decoder\\ECBlocks' => $baseDir . '/app/libs/qrlib/qrcode/decoder/Version.php',
+    'Zxing\\Qrcode\\Decoder\\ErrorCorrectionLevel' => $baseDir . '/app/libs/qrlib/qrcode/decoder/ErrorCorrectionLevel.php',
+    'Zxing\\Qrcode\\Decoder\\FormatInformation' => $baseDir . '/app/libs/qrlib/qrcode/decoder/FormatInformation.php',
+    'Zxing\\Qrcode\\Decoder\\Mode' => $baseDir . '/app/libs/qrlib/qrcode/decoder/Mode.php',
+    'Zxing\\Qrcode\\Decoder\\Version' => $baseDir . '/app/libs/qrlib/qrcode/decoder/Version.php',
+    'Zxing\\Qrcode\\Detector\\AlignmentPattern' => $baseDir . '/app/libs/qrlib/qrcode/detector/AlignmentPattern.php',
+    'Zxing\\Qrcode\\Detector\\AlignmentPatternFinder' => $baseDir . '/app/libs/qrlib/qrcode/detector/AlignmentPatternFinder.php',
+    'Zxing\\Qrcode\\Detector\\Detector' => $baseDir . '/app/libs/qrlib/qrcode/detector/Detector.php',
+    'Zxing\\Qrcode\\Detector\\FinderPattern' => $baseDir . '/app/libs/qrlib/qrcode/detector/FinderPattern.php',
+    'Zxing\\Qrcode\\Detector\\FinderPatternFinder' => $baseDir . '/app/libs/qrlib/qrcode/detector/FinderPatternFinder.php',
+    'Zxing\\Qrcode\\Detector\\FinderPatternInfo' => $baseDir . '/app/libs/qrlib/qrcode/detector/FinderPatternInfo.php',
+    'Zxing\\Qrcode\\QRCodeReader' => $baseDir . '/app/libs/qrlib/qrcode/QRCodeReader.php',
+    'Zxing\\RGBLuminanceSource' => $baseDir . '/app/libs/qrlib/RGBLuminanceSource.php',
+    'Zxing\\Reader' => $baseDir . '/app/libs/qrlib/Reader.php',
+    'Zxing\\ReaderException' => $baseDir . '/app/libs/qrlib/ReaderException.php',
+    'Zxing\\Result' => $baseDir . '/app/libs/qrlib/Result.php',
+    'Zxing\\ResultPoint' => $baseDir . '/app/libs/qrlib/ResultPoint.php',
+);

+ 41 - 0
vendor/composer/autoload_files.php

xqd
@@ -0,0 +1,41 @@
+<?php
+
+// autoload_files.php @generated by Composer
+
+$vendorDir = dirname(dirname(__FILE__));
+$baseDir = dirname($vendorDir);
+
+return array(
+    '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
+    '5255c38a0faeba867671b61dfda6d864' => $vendorDir . '/paragonie/random_compat/lib/random.php',
+    '023d27dca8066ef29e6739335ea73bad' => $vendorDir . '/symfony/polyfill-php70/bootstrap.php',
+    '1d1b89d124cc9cb8219922c9d5569199' => $vendorDir . '/hamcrest/hamcrest-php/hamcrest/Hamcrest.php',
+    '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
+    '667aeda72477189d0494fecd327c3641' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php',
+    'a0edc8309cc5e1d60e3047b5df6b7052' => $vendorDir . '/guzzlehttp/psr7/src/functions_include.php',
+    'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php',
+    '2c102faa651ef8ea5874edb585946bce' => $vendorDir . '/swiftmailer/swiftmailer/lib/swift_required.php',
+    '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
+    'cf97c57bfe0f23854afd2f3818abb7a0' => $vendorDir . '/zendframework/zend-diactoros/src/functions/create_uploaded_file.php',
+    '9bf37a3d0dad93e29cb4e1b1bfab04e9' => $vendorDir . '/zendframework/zend-diactoros/src/functions/marshal_headers_from_sapi.php',
+    'ce70dccb4bcc2efc6e94d2ee526e6972' => $vendorDir . '/zendframework/zend-diactoros/src/functions/marshal_method_from_sapi.php',
+    'f86420df471f14d568bfcb71e271b523' => $vendorDir . '/zendframework/zend-diactoros/src/functions/marshal_protocol_version_from_sapi.php',
+    'b87481e008a3700344428ae089e7f9e5' => $vendorDir . '/zendframework/zend-diactoros/src/functions/marshal_uri_from_sapi.php',
+    '0b0974a5566a1077e4f2e111341112c1' => $vendorDir . '/zendframework/zend-diactoros/src/functions/normalize_server.php',
+    '1ca3bc274755662169f9629d5412a1da' => $vendorDir . '/zendframework/zend-diactoros/src/functions/normalize_uploaded_files.php',
+    '40360c0b9b437e69bcbb7f1349ce029e' => $vendorDir . '/zendframework/zend-diactoros/src/functions/parse_cookie_header.php',
+    'decc78cc4436b1292c6c0d151b19445c' => $vendorDir . '/phpseclib/phpseclib/phpseclib/bootstrap.php',
+    'bd9634f2d41831496de0d3dfe4c94881' => $vendorDir . '/symfony/polyfill-php56/bootstrap.php',
+    'f0906e6318348a765ffb6eb24e0d0938' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/helpers.php',
+    '58571171fd5812e6e447dce228f52f4d' => $vendorDir . '/laravel/framework/src/Illuminate/Support/helpers.php',
+    '6124b4c8570aa390c21fafd04a26c69f' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
+    'f0e7e63bbb278a92db02393536748c5f' => $vendorDir . '/overtrue/wechat/src/Kernel/Support/Helpers.php',
+    '6747f579ad6817f318cc3a7e7a0abb93' => $vendorDir . '/overtrue/wechat/src/Kernel/Helpers.php',
+    '801c31d8ed748cfa537fa45402288c95' => $vendorDir . '/psy/psysh/src/functions.php',
+    'f4e9c7747917193061b46ee142399603' => $vendorDir . '/dingo/api/src/helpers.php',
+    '4378f255c67b62a024d3295602369ebf' => $vendorDir . '/johnlui/aliyun-oss/src/AliyunOSS.php',
+    '74ed299072414d276bb7568fe71d5b0c' => $vendorDir . '/tinify/tinify/lib/Tinify.php',
+    '9635627915aaea7a98d6d14d04ca5b56' => $vendorDir . '/tinify/tinify/lib/Tinify/Exception.php',
+    '9d41e980664e738cf89c620b5607ff23' => $baseDir . '/app/Helper/constants.inc.php',
+    '798aed80e2493fecdadb0f1490a2eb79' => $baseDir . '/app/Helper/functions.inc.php',
+);

+ 19 - 0
vendor/composer/autoload_namespaces.php

xqd
@@ -0,0 +1,19 @@
+<?php
+
+// autoload_namespaces.php @generated by Composer
+
+$vendorDir = dirname(dirname(__FILE__));
+$baseDir = dirname($vendorDir);
+
+return array(
+    'Prophecy\\' => array($vendorDir . '/phpspec/prophecy/src'),
+    'Pimple' => array($vendorDir . '/pimple/pimple/src'),
+    'Parsedown' => array($vendorDir . '/erusev/parsedown'),
+    'PHPExcel' => array($vendorDir . '/phpoffice/phpexcel/Classes'),
+    'Mockery' => array($vendorDir . '/mockery/mockery/library'),
+    'Maatwebsite\\Excel\\' => array($vendorDir . '/maatwebsite/excel/src'),
+    'Doctrine\\DBAL\\' => array($vendorDir . '/doctrine/dbal/lib'),
+    'Doctrine\\Common\\Lexer\\' => array($vendorDir . '/doctrine/lexer/lib'),
+    'Barryvdh' => array($vendorDir . '/barryvdh/reflection-docblock/src'),
+    '' => array($vendorDir . '/dsiddharth2/php-zxing/src'),
+);

+ 93 - 0
vendor/composer/autoload_psr4.php

xqd
@@ -0,0 +1,93 @@
+<?php
+
+// autoload_psr4.php @generated by Composer
+
+$vendorDir = dirname(dirname(__FILE__));
+$baseDir = dirname($vendorDir);
+
+return array(
+    'phpseclib\\' => array($vendorDir . '/phpseclib/phpseclib/phpseclib'),
+    'phpDocumentor\\Reflection\\' => array($vendorDir . '/phpdocumentor/reflection-common/src', $vendorDir . '/phpdocumentor/reflection-docblock/src', $vendorDir . '/phpdocumentor/type-resolver/src'),
+    'Zend\\Diactoros\\' => array($vendorDir . '/zendframework/zend-diactoros/src'),
+    'XdgBaseDir\\' => array($vendorDir . '/dnoegel/php-xdg-base-dir/src'),
+    'Whoops\\' => array($vendorDir . '/filp/whoops/src/Whoops'),
+    'Webmozart\\Assert\\' => array($vendorDir . '/webmozart/assert/src'),
+    'Tinify\\' => array($vendorDir . '/tinify/tinify/lib/Tinify'),
+    'TijsVerkoyen\\CssToInlineStyles\\' => array($vendorDir . '/tijsverkoyen/css-to-inline-styles/src'),
+    'Tests\\' => array($baseDir . '/tests'),
+    'Symfony\\Polyfill\\Util\\' => array($vendorDir . '/symfony/polyfill-util'),
+    'Symfony\\Polyfill\\Php70\\' => array($vendorDir . '/symfony/polyfill-php70'),
+    'Symfony\\Polyfill\\Php56\\' => array($vendorDir . '/symfony/polyfill-php56'),
+    'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'),
+    'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'),
+    'Symfony\\Component\\VarDumper\\' => array($vendorDir . '/symfony/var-dumper'),
+    'Symfony\\Component\\Translation\\' => array($vendorDir . '/symfony/translation'),
+    'Symfony\\Component\\Routing\\' => array($vendorDir . '/symfony/routing'),
+    'Symfony\\Component\\Process\\' => array($vendorDir . '/symfony/process'),
+    'Symfony\\Component\\HttpKernel\\' => array($vendorDir . '/symfony/http-kernel'),
+    'Symfony\\Component\\HttpFoundation\\' => array($vendorDir . '/symfony/http-foundation'),
+    'Symfony\\Component\\Finder\\' => array($vendorDir . '/symfony/finder'),
+    'Symfony\\Component\\Filesystem\\' => array($vendorDir . '/symfony/filesystem'),
+    'Symfony\\Component\\EventDispatcher\\' => array($vendorDir . '/symfony/event-dispatcher'),
+    'Symfony\\Component\\Debug\\' => array($vendorDir . '/symfony/debug'),
+    'Symfony\\Component\\CssSelector\\' => array($vendorDir . '/symfony/css-selector'),
+    'Symfony\\Component\\Console\\' => array($vendorDir . '/symfony/console'),
+    'Symfony\\Component\\Cache\\' => array($vendorDir . '/symfony/cache'),
+    'Symfony\\Bridge\\PsrHttpMessage\\' => array($vendorDir . '/symfony/psr-http-message-bridge'),
+    'SuperClosure\\' => array($vendorDir . '/jeremeamia/SuperClosure/src'),
+    'Seld\\PharUtils\\' => array($vendorDir . '/seld/phar-utils/src'),
+    'Seld\\JsonLint\\' => array($vendorDir . '/seld/jsonlint/src/Seld/JsonLint'),
+    'Ramsey\\Uuid\\' => array($vendorDir . '/ramsey/uuid/src'),
+    'Psy\\' => array($vendorDir . '/psy/psysh/src'),
+    'Psr\\SimpleCache\\' => array($vendorDir . '/psr/simple-cache/src'),
+    'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'),
+    'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-message/src'),
+    'Psr\\Container\\' => array($vendorDir . '/psr/container/src'),
+    'Psr\\Cache\\' => array($vendorDir . '/psr/cache/src'),
+    'PhpParser\\' => array($vendorDir . '/nikic/php-parser/lib/PhpParser'),
+    'Overtrue\\Socialite\\' => array($vendorDir . '/overtrue/socialite/src'),
+    'Overtrue\\LaravelWeChat\\' => array($vendorDir . '/overtrue/laravel-wechat/src'),
+    'Monolog\\' => array($vendorDir . '/monolog/monolog/src/Monolog'),
+    'League\\OAuth2\\Server\\' => array($vendorDir . '/league/oauth2-server/src'),
+    'League\\Fractal\\' => array($vendorDir . '/league/fractal/src'),
+    'League\\Flysystem\\' => array($vendorDir . '/league/flysystem/src'),
+    'League\\Event\\' => array($vendorDir . '/league/event/src'),
+    'Lcobucci\\JWT\\' => array($vendorDir . '/lcobucci/jwt/src'),
+    'Laravel\\Tinker\\' => array($vendorDir . '/laravel/tinker/src'),
+    'Laravel\\Passport\\' => array($vendorDir . '/laravel/passport/src'),
+    'JsonSchema\\' => array($vendorDir . '/justinrainbow/json-schema/src/JsonSchema'),
+    'JakubOnderka\\PhpConsoleHighlighter\\' => array($vendorDir . '/jakub-onderka/php-console-highlighter/src'),
+    'JakubOnderka\\PhpConsoleColor\\' => array($vendorDir . '/jakub-onderka/php-console-color/src'),
+    'Intervention\\Image\\' => array($vendorDir . '/intervention/image/src/Intervention/Image'),
+    'Illuminate\\' => array($vendorDir . '/laravel/framework/src/Illuminate'),
+    'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'),
+    'GuzzleHttp\\Promise\\' => array($vendorDir . '/guzzlehttp/promises/src'),
+    'GuzzleHttp\\' => array($vendorDir . '/guzzlehttp/guzzle/src'),
+    'Grafika\\' => array($vendorDir . '/kosinix/grafika/src/Grafika'),
+    'Germey\\Geetest\\' => array($vendorDir . '/germey/geetest/src'),
+    'Firebase\\JWT\\' => array($vendorDir . '/firebase/php-jwt/src'),
+    'Fideloper\\Proxy\\' => array($vendorDir . '/fideloper/proxy/src'),
+    'Faker\\' => array($vendorDir . '/fzaninotto/faker/src/Faker'),
+    'Egulias\\EmailValidator\\' => array($vendorDir . '/egulias/email-validator/EmailValidator'),
+    'EasyWeChat\\' => array($vendorDir . '/overtrue/wechat/src'),
+    'EasyWeChatComposer\\' => array($vendorDir . '/easywechat-composer/easywechat-composer/src'),
+    'Dotenv\\' => array($vendorDir . '/vlucas/phpdotenv/src'),
+    'Doctrine\\Instantiator\\' => array($vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator'),
+    'Doctrine\\Common\\Inflector\\' => array($vendorDir . '/doctrine/inflector/lib/Doctrine/Common/Inflector'),
+    'Doctrine\\Common\\Cache\\' => array($vendorDir . '/doctrine/cache/lib/Doctrine/Common/Cache'),
+    'Doctrine\\Common\\Annotations\\' => array($vendorDir . '/doctrine/annotations/lib/Doctrine/Common/Annotations'),
+    'Doctrine\\Common\\' => array($vendorDir . '/doctrine/event-manager/lib/Doctrine/Common'),
+    'Dingo\\Blueprint\\' => array($vendorDir . '/dingo/blueprint/src'),
+    'Dingo\\Api\\' => array($vendorDir . '/dingo/api/src'),
+    'Defuse\\Crypto\\' => array($vendorDir . '/defuse/php-encryption/src'),
+    'DeepCopy\\' => array($vendorDir . '/myclabs/deep-copy/src/DeepCopy'),
+    'Cron\\' => array($vendorDir . '/mtdowling/cron-expression/src/Cron'),
+    'Composer\\XdebugHandler\\' => array($vendorDir . '/composer/xdebug-handler/src'),
+    'Composer\\Spdx\\' => array($vendorDir . '/composer/spdx-licenses/src'),
+    'Composer\\Semver\\' => array($vendorDir . '/composer/semver/src'),
+    'Composer\\CaBundle\\' => array($vendorDir . '/composer/ca-bundle/src'),
+    'Composer\\' => array($vendorDir . '/composer/composer/src/Composer'),
+    'Barryvdh\\LaravelIdeHelper\\' => array($vendorDir . '/barryvdh/laravel-ide-helper/src'),
+    'App\\' => array($baseDir . '/app'),
+    '' => array($vendorDir . '/nesbot/carbon/src'),
+);

+ 70 - 0
vendor/composer/autoload_real.php

xqd
@@ -0,0 +1,70 @@
+<?php
+
+// autoload_real.php @generated by Composer
+
+class ComposerAutoloaderInitc6dd7fb340b545d4fe9af80b20aaf9c6
+{
+    private static $loader;
+
+    public static function loadClassLoader($class)
+    {
+        if ('Composer\Autoload\ClassLoader' === $class) {
+            require __DIR__ . '/ClassLoader.php';
+        }
+    }
+
+    public static function getLoader()
+    {
+        if (null !== self::$loader) {
+            return self::$loader;
+        }
+
+        spl_autoload_register(array('ComposerAutoloaderInitc6dd7fb340b545d4fe9af80b20aaf9c6', 'loadClassLoader'), true, true);
+        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
+        spl_autoload_unregister(array('ComposerAutoloaderInitc6dd7fb340b545d4fe9af80b20aaf9c6', 'loadClassLoader'));
+
+        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
+        if ($useStaticLoader) {
+            require_once __DIR__ . '/autoload_static.php';
+
+            call_user_func(\Composer\Autoload\ComposerStaticInitc6dd7fb340b545d4fe9af80b20aaf9c6::getInitializer($loader));
+        } else {
+            $map = require __DIR__ . '/autoload_namespaces.php';
+            foreach ($map as $namespace => $path) {
+                $loader->set($namespace, $path);
+            }
+
+            $map = require __DIR__ . '/autoload_psr4.php';
+            foreach ($map as $namespace => $path) {
+                $loader->setPsr4($namespace, $path);
+            }
+
+            $classMap = require __DIR__ . '/autoload_classmap.php';
+            if ($classMap) {
+                $loader->addClassMap($classMap);
+            }
+        }
+
+        $loader->register(true);
+
+        if ($useStaticLoader) {
+            $includeFiles = Composer\Autoload\ComposerStaticInitc6dd7fb340b545d4fe9af80b20aaf9c6::$files;
+        } else {
+            $includeFiles = require __DIR__ . '/autoload_files.php';
+        }
+        foreach ($includeFiles as $fileIdentifier => $file) {
+            composerRequirec6dd7fb340b545d4fe9af80b20aaf9c6($fileIdentifier, $file);
+        }
+
+        return $loader;
+    }
+}
+
+function composerRequirec6dd7fb340b545d4fe9af80b20aaf9c6($fileIdentifier, $file)
+{
+    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
+        require $file;
+
+        $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
+    }
+}

+ 1366 - 0
vendor/composer/autoload_static.php

xqd
@@ -0,0 +1,1366 @@
+<?php
+
+// autoload_static.php @generated by Composer
+
+namespace Composer\Autoload;
+
+class ComposerStaticInitc6dd7fb340b545d4fe9af80b20aaf9c6
+{
+    public static $files = array (
+        '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
+        '5255c38a0faeba867671b61dfda6d864' => __DIR__ . '/..' . '/paragonie/random_compat/lib/random.php',
+        '023d27dca8066ef29e6739335ea73bad' => __DIR__ . '/..' . '/symfony/polyfill-php70/bootstrap.php',
+        '1d1b89d124cc9cb8219922c9d5569199' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest.php',
+        '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
+        '667aeda72477189d0494fecd327c3641' => __DIR__ . '/..' . '/symfony/var-dumper/Resources/functions/dump.php',
+        'a0edc8309cc5e1d60e3047b5df6b7052' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/functions_include.php',
+        'c964ee0ededf28c96ebd9db5099ef910' => __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php',
+        '2c102faa651ef8ea5874edb585946bce' => __DIR__ . '/..' . '/swiftmailer/swiftmailer/lib/swift_required.php',
+        '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
+        'cf97c57bfe0f23854afd2f3818abb7a0' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/functions/create_uploaded_file.php',
+        '9bf37a3d0dad93e29cb4e1b1bfab04e9' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/functions/marshal_headers_from_sapi.php',
+        'ce70dccb4bcc2efc6e94d2ee526e6972' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/functions/marshal_method_from_sapi.php',
+        'f86420df471f14d568bfcb71e271b523' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/functions/marshal_protocol_version_from_sapi.php',
+        'b87481e008a3700344428ae089e7f9e5' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/functions/marshal_uri_from_sapi.php',
+        '0b0974a5566a1077e4f2e111341112c1' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/functions/normalize_server.php',
+        '1ca3bc274755662169f9629d5412a1da' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/functions/normalize_uploaded_files.php',
+        '40360c0b9b437e69bcbb7f1349ce029e' => __DIR__ . '/..' . '/zendframework/zend-diactoros/src/functions/parse_cookie_header.php',
+        'decc78cc4436b1292c6c0d151b19445c' => __DIR__ . '/..' . '/phpseclib/phpseclib/phpseclib/bootstrap.php',
+        'bd9634f2d41831496de0d3dfe4c94881' => __DIR__ . '/..' . '/symfony/polyfill-php56/bootstrap.php',
+        'f0906e6318348a765ffb6eb24e0d0938' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/helpers.php',
+        '58571171fd5812e6e447dce228f52f4d' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/helpers.php',
+        '6124b4c8570aa390c21fafd04a26c69f' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
+        'f0e7e63bbb278a92db02393536748c5f' => __DIR__ . '/..' . '/overtrue/wechat/src/Kernel/Support/Helpers.php',
+        '6747f579ad6817f318cc3a7e7a0abb93' => __DIR__ . '/..' . '/overtrue/wechat/src/Kernel/Helpers.php',
+        '801c31d8ed748cfa537fa45402288c95' => __DIR__ . '/..' . '/psy/psysh/src/functions.php',
+        'f4e9c7747917193061b46ee142399603' => __DIR__ . '/..' . '/dingo/api/src/helpers.php',
+        '4378f255c67b62a024d3295602369ebf' => __DIR__ . '/..' . '/johnlui/aliyun-oss/src/AliyunOSS.php',
+        '74ed299072414d276bb7568fe71d5b0c' => __DIR__ . '/..' . '/tinify/tinify/lib/Tinify.php',
+        '9635627915aaea7a98d6d14d04ca5b56' => __DIR__ . '/..' . '/tinify/tinify/lib/Tinify/Exception.php',
+        '9d41e980664e738cf89c620b5607ff23' => __DIR__ . '/../..' . '/app/Helper/constants.inc.php',
+        '798aed80e2493fecdadb0f1490a2eb79' => __DIR__ . '/../..' . '/app/Helper/functions.inc.php',
+    );
+
+    public static $prefixLengthsPsr4 = array (
+        'p' => 
+        array (
+            'phpseclib\\' => 10,
+            'phpDocumentor\\Reflection\\' => 25,
+        ),
+        'Z' => 
+        array (
+            'Zend\\Diactoros\\' => 15,
+        ),
+        'X' => 
+        array (
+            'XdgBaseDir\\' => 11,
+        ),
+        'W' => 
+        array (
+            'Whoops\\' => 7,
+            'Webmozart\\Assert\\' => 17,
+        ),
+        'T' => 
+        array (
+            'Tinify\\' => 7,
+            'TijsVerkoyen\\CssToInlineStyles\\' => 31,
+            'Tests\\' => 6,
+        ),
+        'S' => 
+        array (
+            'Symfony\\Polyfill\\Util\\' => 22,
+            'Symfony\\Polyfill\\Php70\\' => 23,
+            'Symfony\\Polyfill\\Php56\\' => 23,
+            'Symfony\\Polyfill\\Mbstring\\' => 26,
+            'Symfony\\Polyfill\\Ctype\\' => 23,
+            'Symfony\\Component\\VarDumper\\' => 28,
+            'Symfony\\Component\\Translation\\' => 30,
+            'Symfony\\Component\\Routing\\' => 26,
+            'Symfony\\Component\\Process\\' => 26,
+            'Symfony\\Component\\HttpKernel\\' => 29,
+            'Symfony\\Component\\HttpFoundation\\' => 33,
+            'Symfony\\Component\\Finder\\' => 25,
+            'Symfony\\Component\\Filesystem\\' => 29,
+            'Symfony\\Component\\EventDispatcher\\' => 34,
+            'Symfony\\Component\\Debug\\' => 24,
+            'Symfony\\Component\\CssSelector\\' => 30,
+            'Symfony\\Component\\Console\\' => 26,
+            'Symfony\\Component\\Cache\\' => 24,
+            'Symfony\\Bridge\\PsrHttpMessage\\' => 30,
+            'SuperClosure\\' => 13,
+            'Seld\\PharUtils\\' => 15,
+            'Seld\\JsonLint\\' => 14,
+        ),
+        'R' => 
+        array (
+            'Ramsey\\Uuid\\' => 12,
+        ),
+        'P' => 
+        array (
+            'Psy\\' => 4,
+            'Psr\\SimpleCache\\' => 16,
+            'Psr\\Log\\' => 8,
+            'Psr\\Http\\Message\\' => 17,
+            'Psr\\Container\\' => 14,
+            'Psr\\Cache\\' => 10,
+            'PhpParser\\' => 10,
+        ),
+        'O' => 
+        array (
+            'Overtrue\\Socialite\\' => 19,
+            'Overtrue\\LaravelWeChat\\' => 23,
+        ),
+        'M' => 
+        array (
+            'Monolog\\' => 8,
+        ),
+        'L' => 
+        array (
+            'League\\OAuth2\\Server\\' => 21,
+            'League\\Fractal\\' => 15,
+            'League\\Flysystem\\' => 17,
+            'League\\Event\\' => 13,
+            'Lcobucci\\JWT\\' => 13,
+            'Laravel\\Tinker\\' => 15,
+            'Laravel\\Passport\\' => 17,
+        ),
+        'J' => 
+        array (
+            'JsonSchema\\' => 11,
+            'JakubOnderka\\PhpConsoleHighlighter\\' => 35,
+            'JakubOnderka\\PhpConsoleColor\\' => 29,
+        ),
+        'I' => 
+        array (
+            'Intervention\\Image\\' => 19,
+            'Illuminate\\' => 11,
+        ),
+        'G' => 
+        array (
+            'GuzzleHttp\\Psr7\\' => 16,
+            'GuzzleHttp\\Promise\\' => 19,
+            'GuzzleHttp\\' => 11,
+            'Grafika\\' => 8,
+            'Germey\\Geetest\\' => 15,
+        ),
+        'F' => 
+        array (
+            'Firebase\\JWT\\' => 13,
+            'Fideloper\\Proxy\\' => 16,
+            'Faker\\' => 6,
+        ),
+        'E' => 
+        array (
+            'Egulias\\EmailValidator\\' => 23,
+            'EasyWeChat\\' => 11,
+            'EasyWeChatComposer\\' => 19,
+        ),
+        'D' => 
+        array (
+            'Dotenv\\' => 7,
+            'Doctrine\\Instantiator\\' => 22,
+            'Doctrine\\Common\\Inflector\\' => 26,
+            'Doctrine\\Common\\Cache\\' => 22,
+            'Doctrine\\Common\\Annotations\\' => 28,
+            'Doctrine\\Common\\' => 16,
+            'Dingo\\Blueprint\\' => 16,
+            'Dingo\\Api\\' => 10,
+            'Defuse\\Crypto\\' => 14,
+            'DeepCopy\\' => 9,
+        ),
+        'C' => 
+        array (
+            'Cron\\' => 5,
+            'Composer\\XdebugHandler\\' => 23,
+            'Composer\\Spdx\\' => 14,
+            'Composer\\Semver\\' => 16,
+            'Composer\\CaBundle\\' => 18,
+            'Composer\\' => 9,
+        ),
+        'B' => 
+        array (
+            'Barryvdh\\LaravelIdeHelper\\' => 26,
+        ),
+        'A' => 
+        array (
+            'App\\' => 4,
+        ),
+    );
+
+    public static $prefixDirsPsr4 = array (
+        'phpseclib\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/phpseclib/phpseclib/phpseclib',
+        ),
+        'phpDocumentor\\Reflection\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src',
+            1 => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src',
+            2 => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src',
+        ),
+        'Zend\\Diactoros\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/zendframework/zend-diactoros/src',
+        ),
+        'XdgBaseDir\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/dnoegel/php-xdg-base-dir/src',
+        ),
+        'Whoops\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/filp/whoops/src/Whoops',
+        ),
+        'Webmozart\\Assert\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/webmozart/assert/src',
+        ),
+        'Tinify\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/tinify/tinify/lib/Tinify',
+        ),
+        'TijsVerkoyen\\CssToInlineStyles\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/tijsverkoyen/css-to-inline-styles/src',
+        ),
+        'Tests\\' => 
+        array (
+            0 => __DIR__ . '/../..' . '/tests',
+        ),
+        'Symfony\\Polyfill\\Util\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/symfony/polyfill-util',
+        ),
+        'Symfony\\Polyfill\\Php70\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/symfony/polyfill-php70',
+        ),
+        'Symfony\\Polyfill\\Php56\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/symfony/polyfill-php56',
+        ),
+        'Symfony\\Polyfill\\Mbstring\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring',
+        ),
+        'Symfony\\Polyfill\\Ctype\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/symfony/polyfill-ctype',
+        ),
+        'Symfony\\Component\\VarDumper\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/symfony/var-dumper',
+        ),
+        'Symfony\\Component\\Translation\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/symfony/translation',
+        ),
+        'Symfony\\Component\\Routing\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/symfony/routing',
+        ),
+        'Symfony\\Component\\Process\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/symfony/process',
+        ),
+        'Symfony\\Component\\HttpKernel\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/symfony/http-kernel',
+        ),
+        'Symfony\\Component\\HttpFoundation\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/symfony/http-foundation',
+        ),
+        'Symfony\\Component\\Finder\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/symfony/finder',
+        ),
+        'Symfony\\Component\\Filesystem\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/symfony/filesystem',
+        ),
+        'Symfony\\Component\\EventDispatcher\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/symfony/event-dispatcher',
+        ),
+        'Symfony\\Component\\Debug\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/symfony/debug',
+        ),
+        'Symfony\\Component\\CssSelector\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/symfony/css-selector',
+        ),
+        'Symfony\\Component\\Console\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/symfony/console',
+        ),
+        'Symfony\\Component\\Cache\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/symfony/cache',
+        ),
+        'Symfony\\Bridge\\PsrHttpMessage\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/symfony/psr-http-message-bridge',
+        ),
+        'SuperClosure\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/jeremeamia/SuperClosure/src',
+        ),
+        'Seld\\PharUtils\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/seld/phar-utils/src',
+        ),
+        'Seld\\JsonLint\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/seld/jsonlint/src/Seld/JsonLint',
+        ),
+        'Ramsey\\Uuid\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/ramsey/uuid/src',
+        ),
+        'Psy\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/psy/psysh/src',
+        ),
+        'Psr\\SimpleCache\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/psr/simple-cache/src',
+        ),
+        'Psr\\Log\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/psr/log/Psr/Log',
+        ),
+        'Psr\\Http\\Message\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/psr/http-message/src',
+        ),
+        'Psr\\Container\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/psr/container/src',
+        ),
+        'Psr\\Cache\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/psr/cache/src',
+        ),
+        'PhpParser\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser',
+        ),
+        'Overtrue\\Socialite\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/overtrue/socialite/src',
+        ),
+        'Overtrue\\LaravelWeChat\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/overtrue/laravel-wechat/src',
+        ),
+        'Monolog\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/monolog/monolog/src/Monolog',
+        ),
+        'League\\OAuth2\\Server\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/league/oauth2-server/src',
+        ),
+        'League\\Fractal\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/league/fractal/src',
+        ),
+        'League\\Flysystem\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/league/flysystem/src',
+        ),
+        'League\\Event\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/league/event/src',
+        ),
+        'Lcobucci\\JWT\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/lcobucci/jwt/src',
+        ),
+        'Laravel\\Tinker\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/laravel/tinker/src',
+        ),
+        'Laravel\\Passport\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/laravel/passport/src',
+        ),
+        'JsonSchema\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema',
+        ),
+        'JakubOnderka\\PhpConsoleHighlighter\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/jakub-onderka/php-console-highlighter/src',
+        ),
+        'JakubOnderka\\PhpConsoleColor\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/jakub-onderka/php-console-color/src',
+        ),
+        'Intervention\\Image\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/intervention/image/src/Intervention/Image',
+        ),
+        'Illuminate\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/laravel/framework/src/Illuminate',
+        ),
+        'GuzzleHttp\\Psr7\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/guzzlehttp/psr7/src',
+        ),
+        'GuzzleHttp\\Promise\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/guzzlehttp/promises/src',
+        ),
+        'GuzzleHttp\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/guzzlehttp/guzzle/src',
+        ),
+        'Grafika\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/kosinix/grafika/src/Grafika',
+        ),
+        'Germey\\Geetest\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/germey/geetest/src',
+        ),
+        'Firebase\\JWT\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/firebase/php-jwt/src',
+        ),
+        'Fideloper\\Proxy\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/fideloper/proxy/src',
+        ),
+        'Faker\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker',
+        ),
+        'Egulias\\EmailValidator\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/egulias/email-validator/EmailValidator',
+        ),
+        'EasyWeChat\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/overtrue/wechat/src',
+        ),
+        'EasyWeChatComposer\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/easywechat-composer/easywechat-composer/src',
+        ),
+        'Dotenv\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/vlucas/phpdotenv/src',
+        ),
+        'Doctrine\\Instantiator\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator',
+        ),
+        'Doctrine\\Common\\Inflector\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/doctrine/inflector/lib/Doctrine/Common/Inflector',
+        ),
+        'Doctrine\\Common\\Cache\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/doctrine/cache/lib/Doctrine/Common/Cache',
+        ),
+        'Doctrine\\Common\\Annotations\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/doctrine/annotations/lib/Doctrine/Common/Annotations',
+        ),
+        'Doctrine\\Common\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/doctrine/event-manager/lib/Doctrine/Common',
+        ),
+        'Dingo\\Blueprint\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/dingo/blueprint/src',
+        ),
+        'Dingo\\Api\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/dingo/api/src',
+        ),
+        'Defuse\\Crypto\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/defuse/php-encryption/src',
+        ),
+        'DeepCopy\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy',
+        ),
+        'Cron\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/mtdowling/cron-expression/src/Cron',
+        ),
+        'Composer\\XdebugHandler\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/composer/xdebug-handler/src',
+        ),
+        'Composer\\Spdx\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/composer/spdx-licenses/src',
+        ),
+        'Composer\\Semver\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/composer/semver/src',
+        ),
+        'Composer\\CaBundle\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/composer/ca-bundle/src',
+        ),
+        'Composer\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/composer/composer/src/Composer',
+        ),
+        'Barryvdh\\LaravelIdeHelper\\' => 
+        array (
+            0 => __DIR__ . '/..' . '/barryvdh/laravel-ide-helper/src',
+        ),
+        'App\\' => 
+        array (
+            0 => __DIR__ . '/../..' . '/app',
+        ),
+    );
+
+    public static $fallbackDirsPsr4 = array (
+        0 => __DIR__ . '/..' . '/nesbot/carbon/src',
+    );
+
+    public static $prefixesPsr0 = array (
+        'P' => 
+        array (
+            'Prophecy\\' => 
+            array (
+                0 => __DIR__ . '/..' . '/phpspec/prophecy/src',
+            ),
+            'Pimple' => 
+            array (
+                0 => __DIR__ . '/..' . '/pimple/pimple/src',
+            ),
+            'Parsedown' => 
+            array (
+                0 => __DIR__ . '/..' . '/erusev/parsedown',
+            ),
+            'PHPExcel' => 
+            array (
+                0 => __DIR__ . '/..' . '/phpoffice/phpexcel/Classes',
+            ),
+        ),
+        'M' => 
+        array (
+            'Mockery' => 
+            array (
+                0 => __DIR__ . '/..' . '/mockery/mockery/library',
+            ),
+            'Maatwebsite\\Excel\\' => 
+            array (
+                0 => __DIR__ . '/..' . '/maatwebsite/excel/src',
+            ),
+        ),
+        'D' => 
+        array (
+            'Doctrine\\DBAL\\' => 
+            array (
+                0 => __DIR__ . '/..' . '/doctrine/dbal/lib',
+            ),
+            'Doctrine\\Common\\Lexer\\' => 
+            array (
+                0 => __DIR__ . '/..' . '/doctrine/lexer/lib',
+            ),
+        ),
+        'B' => 
+        array (
+            'Barryvdh' => 
+            array (
+                0 => __DIR__ . '/..' . '/barryvdh/reflection-docblock/src',
+            ),
+        ),
+    );
+
+    public static $fallbackDirsPsr0 = array (
+        0 => __DIR__ . '/..' . '/dsiddharth2/php-zxing/src',
+    );
+
+    public static $classMap = array (
+        'ArithmeticError' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php',
+        'AssertionError' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/AssertionError.php',
+        'DatabaseSeeder' => __DIR__ . '/../..' . '/database/seeds/DatabaseSeeder.php',
+        'DivisionByZeroError' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php',
+        'Error' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/Error.php',
+        'File_Iterator' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Iterator.php',
+        'File_Iterator_Facade' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Facade.php',
+        'File_Iterator_Factory' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Factory.php',
+        'Grafika\\Color' => __DIR__ . '/../..' . '/app/Helper/Grafika/Color.php',
+        'Grafika\\DrawingObjectInterface' => __DIR__ . '/../..' . '/app/Helper/Grafika/DrawingObjectInterface.php',
+        'Grafika\\DrawingObject\\CubicBezier' => __DIR__ . '/../..' . '/app/Helper/Grafika/DrawingObject/CubicBezier.php',
+        'Grafika\\DrawingObject\\Ellipse' => __DIR__ . '/../..' . '/app/Helper/Grafika/DrawingObject/Ellipse.php',
+        'Grafika\\DrawingObject\\Line' => __DIR__ . '/../..' . '/app/Helper/Grafika/DrawingObject/Line.php',
+        'Grafika\\DrawingObject\\Polygon' => __DIR__ . '/../..' . '/app/Helper/Grafika/DrawingObject/Polygon.php',
+        'Grafika\\DrawingObject\\QuadraticBezier' => __DIR__ . '/../..' . '/app/Helper/Grafika/DrawingObject/QuadraticBezier.php',
+        'Grafika\\DrawingObject\\Rectangle' => __DIR__ . '/../..' . '/app/Helper/Grafika/DrawingObject/Rectangle.php',
+        'Grafika\\EditorInterface' => __DIR__ . '/../..' . '/app/Helper/Grafika/EditorInterface.php',
+        'Grafika\\FilterInterface' => __DIR__ . '/../..' . '/app/Helper/Grafika/FilterInterface.php',
+        'Grafika\\Gd\\DrawingObject\\CubicBezier' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/DrawingObject/CubicBezier.php',
+        'Grafika\\Gd\\DrawingObject\\Ellipse' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/DrawingObject/Ellipse.php',
+        'Grafika\\Gd\\DrawingObject\\Line' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/DrawingObject/Line.php',
+        'Grafika\\Gd\\DrawingObject\\Polygon' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/DrawingObject/Polygon.php',
+        'Grafika\\Gd\\DrawingObject\\QuadraticBezier' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/DrawingObject/QuadraticBezier.php',
+        'Grafika\\Gd\\DrawingObject\\Rectangle' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/DrawingObject/Rectangle.php',
+        'Grafika\\Gd\\Editor' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/Editor.php',
+        'Grafika\\Gd\\Filter\\Blur' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/Filter/Blur.php',
+        'Grafika\\Gd\\Filter\\Brightness' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/Filter/Brightness.php',
+        'Grafika\\Gd\\Filter\\Colorize' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/Filter/Colorize.php',
+        'Grafika\\Gd\\Filter\\Contrast' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/Filter/Contrast.php',
+        'Grafika\\Gd\\Filter\\Dither' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/Filter/Dither.php',
+        'Grafika\\Gd\\Filter\\Gamma' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/Filter/Gamma.php',
+        'Grafika\\Gd\\Filter\\Grayscale' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/Filter/Grayscale.php',
+        'Grafika\\Gd\\Filter\\Invert' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/Filter/Invert.php',
+        'Grafika\\Gd\\Filter\\Pixelate' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/Filter/Pixelate.php',
+        'Grafika\\Gd\\Filter\\Sharpen' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/Filter/Sharpen.php',
+        'Grafika\\Gd\\Filter\\Sobel' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/Filter/Sobel.php',
+        'Grafika\\Gd\\Helper\\GifByteStream' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/Helper/GifByteStream.php',
+        'Grafika\\Gd\\Helper\\GifHelper' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/Helper/GifHelper.php',
+        'Grafika\\Gd\\Image' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/Image.php',
+        'Grafika\\Gd\\ImageHash\\AverageHash' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/ImageHash/AverageHash.php',
+        'Grafika\\Gd\\ImageHash\\DifferenceHash' => __DIR__ . '/../..' . '/app/Helper/Grafika/Gd/ImageHash/DifferenceHash.php',
+        'Grafika\\Grafika' => __DIR__ . '/../..' . '/app/Helper/Grafika/Grafika.php',
+        'Grafika\\ImageInterface' => __DIR__ . '/../..' . '/app/Helper/Grafika/ImageInterface.php',
+        'Grafika\\ImageType' => __DIR__ . '/../..' . '/app/Helper/Grafika/ImageType.php',
+        'Grafika\\Imagick\\DrawingObject\\CubicBezier' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/DrawingObject/CubicBezier.php',
+        'Grafika\\Imagick\\DrawingObject\\Ellipse' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/DrawingObject/Ellipse.php',
+        'Grafika\\Imagick\\DrawingObject\\Line' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/DrawingObject/Line.php',
+        'Grafika\\Imagick\\DrawingObject\\Polygon' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/DrawingObject/Polygon.php',
+        'Grafika\\Imagick\\DrawingObject\\QuadraticBezier' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/DrawingObject/QuadraticBezier.php',
+        'Grafika\\Imagick\\DrawingObject\\Rectangle' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/DrawingObject/Rectangle.php',
+        'Grafika\\Imagick\\Editor' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/Editor.php',
+        'Grafika\\Imagick\\Filter\\Blur' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/Filter/Blur.php',
+        'Grafika\\Imagick\\Filter\\Brightness' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/Filter/Brightness.php',
+        'Grafika\\Imagick\\Filter\\Colorize' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/Filter/Colorize.php',
+        'Grafika\\Imagick\\Filter\\Contrast' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/Filter/Contrast.php',
+        'Grafika\\Imagick\\Filter\\Dither' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/Filter/Dither.php',
+        'Grafika\\Imagick\\Filter\\Gamma' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/Filter/Gamma.php',
+        'Grafika\\Imagick\\Filter\\Grayscale' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/Filter/Grayscale.php',
+        'Grafika\\Imagick\\Filter\\Invert' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/Filter/Invert.php',
+        'Grafika\\Imagick\\Filter\\Pixelate' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/Filter/Pixelate.php',
+        'Grafika\\Imagick\\Filter\\Sharpen' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/Filter/Sharpen.php',
+        'Grafika\\Imagick\\Filter\\Sobel' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/Filter/Sobel.php',
+        'Grafika\\Imagick\\Image' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/Image.php',
+        'Grafika\\Imagick\\ImageHash\\AverageHash' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/ImageHash/AverageHash.php',
+        'Grafika\\Imagick\\ImageHash\\DifferenceHash' => __DIR__ . '/../..' . '/app/Helper/Grafika/Imagick/ImageHash/DifferenceHash.php',
+        'Grafika\\Position' => __DIR__ . '/../..' . '/app/Helper/Grafika/Position.php',
+        'Hamcrest\\Arrays\\IsArray' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArray.php',
+        'Hamcrest\\Arrays\\IsArrayContaining' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContaining.php',
+        'Hamcrest\\Arrays\\IsArrayContainingInAnyOrder' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingInAnyOrder.php',
+        'Hamcrest\\Arrays\\IsArrayContainingInOrder' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingInOrder.php',
+        'Hamcrest\\Arrays\\IsArrayContainingKey' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingKey.php',
+        'Hamcrest\\Arrays\\IsArrayContainingKeyValuePair' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingKeyValuePair.php',
+        'Hamcrest\\Arrays\\IsArrayWithSize' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayWithSize.php',
+        'Hamcrest\\Arrays\\MatchingOnce' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/MatchingOnce.php',
+        'Hamcrest\\Arrays\\SeriesMatchingOnce' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/SeriesMatchingOnce.php',
+        'Hamcrest\\AssertionError' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/AssertionError.php',
+        'Hamcrest\\BaseDescription' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/BaseDescription.php',
+        'Hamcrest\\BaseMatcher' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/BaseMatcher.php',
+        'Hamcrest\\Collection\\IsEmptyTraversable' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Collection/IsEmptyTraversable.php',
+        'Hamcrest\\Collection\\IsTraversableWithSize' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Collection/IsTraversableWithSize.php',
+        'Hamcrest\\Core\\AllOf' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/AllOf.php',
+        'Hamcrest\\Core\\AnyOf' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/AnyOf.php',
+        'Hamcrest\\Core\\CombinableMatcher' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/CombinableMatcher.php',
+        'Hamcrest\\Core\\DescribedAs' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/DescribedAs.php',
+        'Hamcrest\\Core\\Every' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/Every.php',
+        'Hamcrest\\Core\\HasToString' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/HasToString.php',
+        'Hamcrest\\Core\\Is' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/Is.php',
+        'Hamcrest\\Core\\IsAnything' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsAnything.php',
+        'Hamcrest\\Core\\IsCollectionContaining' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsCollectionContaining.php',
+        'Hamcrest\\Core\\IsEqual' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsEqual.php',
+        'Hamcrest\\Core\\IsIdentical' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsIdentical.php',
+        'Hamcrest\\Core\\IsInstanceOf' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsInstanceOf.php',
+        'Hamcrest\\Core\\IsNot' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsNot.php',
+        'Hamcrest\\Core\\IsNull' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsNull.php',
+        'Hamcrest\\Core\\IsSame' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsSame.php',
+        'Hamcrest\\Core\\IsTypeOf' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsTypeOf.php',
+        'Hamcrest\\Core\\Set' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/Set.php',
+        'Hamcrest\\Core\\ShortcutCombination' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/ShortcutCombination.php',
+        'Hamcrest\\Description' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Description.php',
+        'Hamcrest\\DiagnosingMatcher' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/DiagnosingMatcher.php',
+        'Hamcrest\\FeatureMatcher' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/FeatureMatcher.php',
+        'Hamcrest\\Internal\\SelfDescribingValue' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Internal/SelfDescribingValue.php',
+        'Hamcrest\\Matcher' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Matcher.php',
+        'Hamcrest\\MatcherAssert' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/MatcherAssert.php',
+        'Hamcrest\\Matchers' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Matchers.php',
+        'Hamcrest\\NullDescription' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/NullDescription.php',
+        'Hamcrest\\Number\\IsCloseTo' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Number/IsCloseTo.php',
+        'Hamcrest\\Number\\OrderingComparison' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Number/OrderingComparison.php',
+        'Hamcrest\\SelfDescribing' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/SelfDescribing.php',
+        'Hamcrest\\StringDescription' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/StringDescription.php',
+        'Hamcrest\\Text\\IsEmptyString' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/IsEmptyString.php',
+        'Hamcrest\\Text\\IsEqualIgnoringCase' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/IsEqualIgnoringCase.php',
+        'Hamcrest\\Text\\IsEqualIgnoringWhiteSpace' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/IsEqualIgnoringWhiteSpace.php',
+        'Hamcrest\\Text\\MatchesPattern' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/MatchesPattern.php',
+        'Hamcrest\\Text\\StringContains' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringContains.php',
+        'Hamcrest\\Text\\StringContainsIgnoringCase' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringContainsIgnoringCase.php',
+        'Hamcrest\\Text\\StringContainsInOrder' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringContainsInOrder.php',
+        'Hamcrest\\Text\\StringEndsWith' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringEndsWith.php',
+        'Hamcrest\\Text\\StringStartsWith' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringStartsWith.php',
+        'Hamcrest\\Text\\SubstringMatcher' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/SubstringMatcher.php',
+        'Hamcrest\\TypeSafeDiagnosingMatcher' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/TypeSafeDiagnosingMatcher.php',
+        'Hamcrest\\TypeSafeMatcher' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/TypeSafeMatcher.php',
+        'Hamcrest\\Type\\IsArray' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsArray.php',
+        'Hamcrest\\Type\\IsBoolean' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsBoolean.php',
+        'Hamcrest\\Type\\IsCallable' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsCallable.php',
+        'Hamcrest\\Type\\IsDouble' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsDouble.php',
+        'Hamcrest\\Type\\IsInteger' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsInteger.php',
+        'Hamcrest\\Type\\IsNumeric' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsNumeric.php',
+        'Hamcrest\\Type\\IsObject' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsObject.php',
+        'Hamcrest\\Type\\IsResource' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsResource.php',
+        'Hamcrest\\Type\\IsScalar' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsScalar.php',
+        'Hamcrest\\Type\\IsString' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsString.php',
+        'Hamcrest\\Util' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Util.php',
+        'Hamcrest\\Xml\\HasXPath' => __DIR__ . '/..' . '/hamcrest/hamcrest-php/hamcrest/Hamcrest/Xml/HasXPath.php',
+        'HttpClient' => __DIR__ . '/../..' . '/app/libs/print/HttpClient.class.php',
+        'Maatwebsite\\Excel\\Classes\\Cache' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Classes/Cache.php',
+        'Maatwebsite\\Excel\\Classes\\FormatIdentifier' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Classes/FormatIdentifier.php',
+        'Maatwebsite\\Excel\\Classes\\LaravelExcelWorksheet' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Classes/LaravelExcelWorksheet.php',
+        'Maatwebsite\\Excel\\Classes\\PHPExcel' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Classes/PHPExcel.php',
+        'Maatwebsite\\Excel\\Collections\\CellCollection' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Collections/CellCollection.php',
+        'Maatwebsite\\Excel\\Collections\\ExcelCollection' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Collections/ExcelCollection.php',
+        'Maatwebsite\\Excel\\Collections\\RowCollection' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Collections/RowCollection.php',
+        'Maatwebsite\\Excel\\Collections\\SheetCollection' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Collections/SheetCollection.php',
+        'Maatwebsite\\Excel\\Excel' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Excel.php',
+        'Maatwebsite\\Excel\\ExcelServiceProvider' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/ExcelServiceProvider.php',
+        'Maatwebsite\\Excel\\Exceptions\\LaravelExcelException' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Exceptions/LaravelExcelException.php',
+        'Maatwebsite\\Excel\\Facades\\Excel' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Facades/Excel.php',
+        'Maatwebsite\\Excel\\Files\\ExcelFile' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Files/ExcelFile.php',
+        'Maatwebsite\\Excel\\Files\\ExportHandler' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Files/ExportHandler.php',
+        'Maatwebsite\\Excel\\Files\\File' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Files/File.php',
+        'Maatwebsite\\Excel\\Files\\ImportHandler' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Files/ImportHandler.php',
+        'Maatwebsite\\Excel\\Files\\NewExcelFile' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Files/NewExcelFile.php',
+        'Maatwebsite\\Excel\\Filters\\ChunkReadFilter' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Filters/ChunkReadFilter.php',
+        'Maatwebsite\\Excel\\Parsers\\CssParser' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Parsers/CssParser.php',
+        'Maatwebsite\\Excel\\Parsers\\ExcelParser' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Parsers/ExcelParser.php',
+        'Maatwebsite\\Excel\\Parsers\\ViewParser' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Parsers/ViewParser.php',
+        'Maatwebsite\\Excel\\Readers\\Batch' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Readers/Batch.php',
+        'Maatwebsite\\Excel\\Readers\\ChunkedReadJob' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Readers/ChunkedReadJob.php',
+        'Maatwebsite\\Excel\\Readers\\ConfigReader' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Readers/ConfigReader.php',
+        'Maatwebsite\\Excel\\Readers\\Html' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Readers/HtmlReader.php',
+        'Maatwebsite\\Excel\\Readers\\LaravelExcelReader' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Readers/LaravelExcelReader.php',
+        'Maatwebsite\\Excel\\Writers\\CellWriter' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Writers/CellWriter.php',
+        'Maatwebsite\\Excel\\Writers\\LaravelExcelWriter' => __DIR__ . '/..' . '/maatwebsite/excel/src/Maatwebsite/Excel/Writers/LaravelExcelWriter.php',
+        'PHPUnit\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Exception.php',
+        'PHPUnit\\Framework\\Assert' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Assert.php',
+        'PHPUnit\\Framework\\AssertionFailedError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/AssertionFailedError.php',
+        'PHPUnit\\Framework\\BaseTestListener' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/BaseTestListener.php',
+        'PHPUnit\\Framework\\CodeCoverageException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/CodeCoverageException.php',
+        'PHPUnit\\Framework\\Constraint\\ArrayHasKey' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ArrayHasKey.php',
+        'PHPUnit\\Framework\\Constraint\\ArraySubset' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ArraySubset.php',
+        'PHPUnit\\Framework\\Constraint\\Attribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Attribute.php',
+        'PHPUnit\\Framework\\Constraint\\Callback' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Callback.php',
+        'PHPUnit\\Framework\\Constraint\\ClassHasAttribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ClassHasAttribute.php',
+        'PHPUnit\\Framework\\Constraint\\ClassHasStaticAttribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ClassHasStaticAttribute.php',
+        'PHPUnit\\Framework\\Constraint\\Composite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Composite.php',
+        'PHPUnit\\Framework\\Constraint\\Constraint' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Constraint.php',
+        'PHPUnit\\Framework\\Constraint\\Count' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Count.php',
+        'PHPUnit\\Framework\\Constraint\\DirectoryExists' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/DirectoryExists.php',
+        'PHPUnit\\Framework\\Constraint\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Exception.php',
+        'PHPUnit\\Framework\\Constraint\\ExceptionCode' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ExceptionCode.php',
+        'PHPUnit\\Framework\\Constraint\\ExceptionMessage' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessage.php',
+        'PHPUnit\\Framework\\Constraint\\ExceptionMessageRegularExpression' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessageRegularExpression.php',
+        'PHPUnit\\Framework\\Constraint\\FileExists' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/FileExists.php',
+        'PHPUnit\\Framework\\Constraint\\GreaterThan' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/GreaterThan.php',
+        'PHPUnit\\Framework\\Constraint\\IsAnything' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsAnything.php',
+        'PHPUnit\\Framework\\Constraint\\IsEmpty' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsEmpty.php',
+        'PHPUnit\\Framework\\Constraint\\IsEqual' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsEqual.php',
+        'PHPUnit\\Framework\\Constraint\\IsFalse' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsFalse.php',
+        'PHPUnit\\Framework\\Constraint\\IsFinite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsFinite.php',
+        'PHPUnit\\Framework\\Constraint\\IsIdentical' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php',
+        'PHPUnit\\Framework\\Constraint\\IsInfinite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsInfinite.php',
+        'PHPUnit\\Framework\\Constraint\\IsInstanceOf' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsInstanceOf.php',
+        'PHPUnit\\Framework\\Constraint\\IsJson' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsJson.php',
+        'PHPUnit\\Framework\\Constraint\\IsNan' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsNan.php',
+        'PHPUnit\\Framework\\Constraint\\IsNull' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsNull.php',
+        'PHPUnit\\Framework\\Constraint\\IsReadable' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsReadable.php',
+        'PHPUnit\\Framework\\Constraint\\IsTrue' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsTrue.php',
+        'PHPUnit\\Framework\\Constraint\\IsType' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsType.php',
+        'PHPUnit\\Framework\\Constraint\\IsWritable' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsWritable.php',
+        'PHPUnit\\Framework\\Constraint\\JsonMatches' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php',
+        'PHPUnit\\Framework\\Constraint\\JsonMatchesErrorMessageProvider' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/JsonMatchesErrorMessageProvider.php',
+        'PHPUnit\\Framework\\Constraint\\LessThan' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LessThan.php',
+        'PHPUnit\\Framework\\Constraint\\LogicalAnd' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LogicalAnd.php',
+        'PHPUnit\\Framework\\Constraint\\LogicalNot' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LogicalNot.php',
+        'PHPUnit\\Framework\\Constraint\\LogicalOr' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LogicalOr.php',
+        'PHPUnit\\Framework\\Constraint\\LogicalXor' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LogicalXor.php',
+        'PHPUnit\\Framework\\Constraint\\ObjectHasAttribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ObjectHasAttribute.php',
+        'PHPUnit\\Framework\\Constraint\\RegularExpression' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/RegularExpression.php',
+        'PHPUnit\\Framework\\Constraint\\SameSize' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/SameSize.php',
+        'PHPUnit\\Framework\\Constraint\\StringContains' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringContains.php',
+        'PHPUnit\\Framework\\Constraint\\StringEndsWith' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringEndsWith.php',
+        'PHPUnit\\Framework\\Constraint\\StringMatchesFormatDescription' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringMatchesFormatDescription.php',
+        'PHPUnit\\Framework\\Constraint\\StringStartsWith' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringStartsWith.php',
+        'PHPUnit\\Framework\\Constraint\\TraversableContains' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/TraversableContains.php',
+        'PHPUnit\\Framework\\Constraint\\TraversableContainsOnly' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/TraversableContainsOnly.php',
+        'PHPUnit\\Framework\\CoveredCodeNotExecutedException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/CoveredCodeNotExecutedException.php',
+        'PHPUnit\\Framework\\DataProviderTestSuite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/DataProviderTestSuite.php',
+        'PHPUnit\\Framework\\Error\\Deprecated' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Deprecated.php',
+        'PHPUnit\\Framework\\Error\\Error' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Error.php',
+        'PHPUnit\\Framework\\Error\\Notice' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Notice.php',
+        'PHPUnit\\Framework\\Error\\Warning' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Warning.php',
+        'PHPUnit\\Framework\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception.php',
+        'PHPUnit\\Framework\\ExceptionWrapper' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/ExceptionWrapper.php',
+        'PHPUnit\\Framework\\ExpectationFailedException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/ExpectationFailedException.php',
+        'PHPUnit\\Framework\\IncompleteTest' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/IncompleteTest.php',
+        'PHPUnit\\Framework\\IncompleteTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/IncompleteTestCase.php',
+        'PHPUnit\\Framework\\IncompleteTestError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/IncompleteTestError.php',
+        'PHPUnit\\Framework\\InvalidCoversTargetException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/InvalidCoversTargetException.php',
+        'PHPUnit\\Framework\\MissingCoversAnnotationException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MissingCoversAnnotationException.php',
+        'PHPUnit\\Framework\\MockObject\\BadMethodCallException' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Exception/BadMethodCallException.php',
+        'PHPUnit\\Framework\\MockObject\\Builder\\Identity' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Builder/Identity.php',
+        'PHPUnit\\Framework\\MockObject\\Builder\\InvocationMocker' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Builder/InvocationMocker.php',
+        'PHPUnit\\Framework\\MockObject\\Builder\\Match' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Builder/Match.php',
+        'PHPUnit\\Framework\\MockObject\\Builder\\MethodNameMatch' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Builder/MethodNameMatch.php',
+        'PHPUnit\\Framework\\MockObject\\Builder\\NamespaceMatch' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Builder/NamespaceMatch.php',
+        'PHPUnit\\Framework\\MockObject\\Builder\\ParametersMatch' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Builder/ParametersMatch.php',
+        'PHPUnit\\Framework\\MockObject\\Builder\\Stub' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Builder/Stub.php',
+        'PHPUnit\\Framework\\MockObject\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Exception/Exception.php',
+        'PHPUnit\\Framework\\MockObject\\Generator' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Generator.php',
+        'PHPUnit\\Framework\\MockObject\\Invocation' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Invocation/Invocation.php',
+        'PHPUnit\\Framework\\MockObject\\InvocationMocker' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/InvocationMocker.php',
+        'PHPUnit\\Framework\\MockObject\\Invocation\\ObjectInvocation' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Invocation/ObjectInvocation.php',
+        'PHPUnit\\Framework\\MockObject\\Invocation\\StaticInvocation' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Invocation/StaticInvocation.php',
+        'PHPUnit\\Framework\\MockObject\\Invokable' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Invokable.php',
+        'PHPUnit\\Framework\\MockObject\\Matcher' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher.php',
+        'PHPUnit\\Framework\\MockObject\\Matcher\\AnyInvokedCount' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/AnyInvokedCount.php',
+        'PHPUnit\\Framework\\MockObject\\Matcher\\AnyParameters' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/AnyParameters.php',
+        'PHPUnit\\Framework\\MockObject\\Matcher\\ConsecutiveParameters' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/ConsecutiveParameters.php',
+        'PHPUnit\\Framework\\MockObject\\Matcher\\Invocation' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/Invocation.php',
+        'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtIndex' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtIndex.php',
+        'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtLeastCount' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtLeastCount.php',
+        'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtLeastOnce' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtLeastOnce.php',
+        'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtMostCount' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtMostCount.php',
+        'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedCount' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedCount.php',
+        'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedRecorder' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedRecorder.php',
+        'PHPUnit\\Framework\\MockObject\\Matcher\\MethodName' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/MethodName.php',
+        'PHPUnit\\Framework\\MockObject\\Matcher\\Parameters' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/Parameters.php',
+        'PHPUnit\\Framework\\MockObject\\Matcher\\StatelessInvocation' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Matcher/StatelessInvocation.php',
+        'PHPUnit\\Framework\\MockObject\\MockBuilder' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/MockBuilder.php',
+        'PHPUnit\\Framework\\MockObject\\MockObject' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/ForwardCompatibility/MockObject.php',
+        'PHPUnit\\Framework\\MockObject\\RuntimeException' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Exception/RuntimeException.php',
+        'PHPUnit\\Framework\\MockObject\\Stub' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub.php',
+        'PHPUnit\\Framework\\MockObject\\Stub\\ConsecutiveCalls' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub/ConsecutiveCalls.php',
+        'PHPUnit\\Framework\\MockObject\\Stub\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub/Exception.php',
+        'PHPUnit\\Framework\\MockObject\\Stub\\MatcherCollection' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub/MatcherCollection.php',
+        'PHPUnit\\Framework\\MockObject\\Stub\\ReturnArgument' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub/ReturnArgument.php',
+        'PHPUnit\\Framework\\MockObject\\Stub\\ReturnCallback' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub/ReturnCallback.php',
+        'PHPUnit\\Framework\\MockObject\\Stub\\ReturnReference' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub/ReturnReference.php',
+        'PHPUnit\\Framework\\MockObject\\Stub\\ReturnSelf' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub/ReturnSelf.php',
+        'PHPUnit\\Framework\\MockObject\\Stub\\ReturnStub' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub/ReturnStub.php',
+        'PHPUnit\\Framework\\MockObject\\Stub\\ReturnValueMap' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Stub/ReturnValueMap.php',
+        'PHPUnit\\Framework\\MockObject\\Verifiable' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Verifiable.php',
+        'PHPUnit\\Framework\\OutputError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/OutputError.php',
+        'PHPUnit\\Framework\\RiskyTest' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/RiskyTest.php',
+        'PHPUnit\\Framework\\RiskyTestError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/RiskyTestError.php',
+        'PHPUnit\\Framework\\SelfDescribing' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SelfDescribing.php',
+        'PHPUnit\\Framework\\SkippedTest' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTest.php',
+        'PHPUnit\\Framework\\SkippedTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTestCase.php',
+        'PHPUnit\\Framework\\SkippedTestError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTestError.php',
+        'PHPUnit\\Framework\\SkippedTestSuiteError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTestSuiteError.php',
+        'PHPUnit\\Framework\\SyntheticError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SyntheticError.php',
+        'PHPUnit\\Framework\\Test' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Test.php',
+        'PHPUnit\\Framework\\TestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestCase.php',
+        'PHPUnit\\Framework\\TestFailure' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestFailure.php',
+        'PHPUnit\\Framework\\TestListener' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestListener.php',
+        'PHPUnit\\Framework\\TestListenerDefaultImplementation' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestListenerDefaultImplementation.php',
+        'PHPUnit\\Framework\\TestResult' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestResult.php',
+        'PHPUnit\\Framework\\TestSuite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestSuite.php',
+        'PHPUnit\\Framework\\TestSuiteIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestSuiteIterator.php',
+        'PHPUnit\\Framework\\UnintentionallyCoveredCodeError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/UnintentionallyCoveredCodeError.php',
+        'PHPUnit\\Framework\\Warning' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Warning.php',
+        'PHPUnit\\Framework\\WarningTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/WarningTestCase.php',
+        'PHPUnit\\Runner\\BaseTestRunner' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/BaseTestRunner.php',
+        'PHPUnit\\Runner\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Exception.php',
+        'PHPUnit\\Runner\\Filter\\ExcludeGroupFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/ExcludeGroupFilterIterator.php',
+        'PHPUnit\\Runner\\Filter\\Factory' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/Factory.php',
+        'PHPUnit\\Runner\\Filter\\GroupFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/GroupFilterIterator.php',
+        'PHPUnit\\Runner\\Filter\\IncludeGroupFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/IncludeGroupFilterIterator.php',
+        'PHPUnit\\Runner\\Filter\\NameFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/NameFilterIterator.php',
+        'PHPUnit\\Runner\\PhptTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/PhptTestCase.php',
+        'PHPUnit\\Runner\\StandardTestSuiteLoader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/StandardTestSuiteLoader.php',
+        'PHPUnit\\Runner\\TestSuiteLoader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/TestSuiteLoader.php',
+        'PHPUnit\\Runner\\Version' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Version.php',
+        'PHPUnit\\TextUI\\Command' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Command.php',
+        'PHPUnit\\TextUI\\ResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/ResultPrinter.php',
+        'PHPUnit\\TextUI\\TestRunner' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/TestRunner.php',
+        'PHPUnit\\Util\\Blacklist' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Blacklist.php',
+        'PHPUnit\\Util\\Configuration' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Configuration.php',
+        'PHPUnit\\Util\\ConfigurationGenerator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/ConfigurationGenerator.php',
+        'PHPUnit\\Util\\ErrorHandler' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/ErrorHandler.php',
+        'PHPUnit\\Util\\Fileloader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Fileloader.php',
+        'PHPUnit\\Util\\Filesystem' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Filesystem.php',
+        'PHPUnit\\Util\\Filter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Filter.php',
+        'PHPUnit\\Util\\Getopt' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Getopt.php',
+        'PHPUnit\\Util\\GlobalState' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/GlobalState.php',
+        'PHPUnit\\Util\\InvalidArgumentHelper' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/InvalidArgumentHelper.php',
+        'PHPUnit\\Util\\Json' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Json.php',
+        'PHPUnit\\Util\\Log\\JUnit' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Log/JUnit.php',
+        'PHPUnit\\Util\\Log\\TeamCity' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Log/TeamCity.php',
+        'PHPUnit\\Util\\PHP\\AbstractPhpProcess' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/PHP/AbstractPhpProcess.php',
+        'PHPUnit\\Util\\PHP\\DefaultPhpProcess' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/PHP/DefaultPhpProcess.php',
+        'PHPUnit\\Util\\PHP\\WindowsPhpProcess' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/PHP/WindowsPhpProcess.php',
+        'PHPUnit\\Util\\Printer' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Printer.php',
+        'PHPUnit\\Util\\RegularExpression' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/RegularExpression.php',
+        'PHPUnit\\Util\\Test' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Test.php',
+        'PHPUnit\\Util\\TestDox\\HtmlResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/HtmlResultPrinter.php',
+        'PHPUnit\\Util\\TestDox\\NamePrettifier' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/NamePrettifier.php',
+        'PHPUnit\\Util\\TestDox\\ResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter.php',
+        'PHPUnit\\Util\\TestDox\\TextResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/TextResultPrinter.php',
+        'PHPUnit\\Util\\TestDox\\XmlResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/XmlResultPrinter.php',
+        'PHPUnit\\Util\\TextTestListRenderer' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TextTestListRenderer.php',
+        'PHPUnit\\Util\\Type' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Type.php',
+        'PHPUnit\\Util\\Xml' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Xml.php',
+        'PHPUnit\\Util\\XmlTestListRenderer' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/XmlTestListRenderer.php',
+        'PHPUnit_Framework_MockObject_MockObject' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/MockObject.php',
+        'PHP_Timer' => __DIR__ . '/..' . '/phpunit/php-timer/src/Timer.php',
+        'PHP_Token' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_TokenWithScope' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_TokenWithScopeAndVisibility' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_ABSTRACT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_AMPERSAND' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_AND_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_ARRAY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_ARRAY_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_AS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_ASYNC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_AT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_AWAIT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_BACKTICK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_BAD_CHARACTER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_BOOLEAN_AND' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_BOOLEAN_OR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_BOOL_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_BREAK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_CALLABLE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_CARET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_CASE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_CATCH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_CHARACTER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_CLASS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_CLASS_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_CLASS_NAME_CONSTANT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_CLONE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_CLOSE_BRACKET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_CLOSE_CURLY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_CLOSE_SQUARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_CLOSE_TAG' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_COALESCE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_COLON' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_COMMA' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_COMMENT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_COMPILER_HALT_OFFSET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_CONCAT_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_CONST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_CONSTANT_ENCAPSED_STRING' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_CONTINUE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_CURLY_OPEN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_DEC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_DECLARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_DEFAULT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_DIR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_DIV' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_DIV_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_DNUMBER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_DO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_DOC_COMMENT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_DOLLAR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_DOLLAR_OPEN_CURLY_BRACES' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_DOT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_DOUBLE_ARROW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_DOUBLE_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_DOUBLE_COLON' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_DOUBLE_QUOTES' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_ECHO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_ELLIPSIS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_ELSE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_ELSEIF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_EMPTY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_ENCAPSED_AND_WHITESPACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_ENDDECLARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_ENDFOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_ENDFOREACH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_ENDIF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_ENDSWITCH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_ENDWHILE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_END_HEREDOC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_ENUM' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_EQUALS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_EVAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_EXCLAMATION_MARK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_EXIT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_EXTENDS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_FILE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_FINAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_FINALLY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_FOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_FOREACH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_FUNCTION' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_FUNC_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_GLOBAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_GOTO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_GT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_HALT_COMPILER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_IF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_IMPLEMENTS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_IN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_INC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_INCLUDE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_INCLUDE_ONCE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_INLINE_HTML' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_INSTANCEOF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_INSTEADOF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_INTERFACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_INT_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_ISSET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_IS_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_IS_GREATER_OR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_IS_IDENTICAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_IS_NOT_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_IS_NOT_IDENTICAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_IS_SMALLER_OR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_Includes' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_JOIN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_LAMBDA_ARROW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_LAMBDA_CP' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_LAMBDA_OP' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_LINE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_LIST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_LNUMBER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_LOGICAL_AND' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_LOGICAL_OR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_LOGICAL_XOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_LT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_METHOD_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_MINUS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_MINUS_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_MOD_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_MULT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_MUL_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_NAMESPACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_NEW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_NS_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_NS_SEPARATOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_NULLSAFE_OBJECT_OPERATOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_NUM_STRING' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_OBJECT_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_OBJECT_OPERATOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_ONUMBER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_OPEN_BRACKET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_OPEN_CURLY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_OPEN_SQUARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_OPEN_TAG' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_OPEN_TAG_WITH_ECHO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_OR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_PAAMAYIM_NEKUDOTAYIM' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_PERCENT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_PIPE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_PLUS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_PLUS_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_POW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_POW_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_PRINT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_PRIVATE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_PROTECTED' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_PUBLIC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_QUESTION_MARK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_REQUIRE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_REQUIRE_ONCE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_RETURN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_SEMICOLON' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_SHAPE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_SL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_SL_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_SPACESHIP' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_SR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_SR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_START_HEREDOC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_STATIC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_STRING' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_STRING_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_STRING_VARNAME' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_SUPER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_SWITCH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_Stream' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token/Stream.php',
+        'PHP_Token_Stream_CachingFactory' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token/Stream/CachingFactory.php',
+        'PHP_Token_THROW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_TILDE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_TRAIT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_TRAIT_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_TRY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_TYPE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_TYPELIST_GT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_TYPELIST_LT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_UNSET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_UNSET_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_USE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_USE_FUNCTION' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_VAR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_VARIABLE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_WHERE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_WHILE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_WHITESPACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_XHP_ATTRIBUTE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_XHP_CATEGORY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_XHP_CATEGORY_LABEL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_XHP_CHILDREN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_XHP_LABEL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_XHP_REQUIRED' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_XHP_TAG_GT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_XHP_TAG_LT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_XHP_TEXT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_XOR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_YIELD' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'PHP_Token_YIELD_FROM' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
+        'ParseError' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/ParseError.php',
+        'PharIo\\Manifest\\Application' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Application.php',
+        'PharIo\\Manifest\\ApplicationName' => __DIR__ . '/..' . '/phar-io/manifest/src/values/ApplicationName.php',
+        'PharIo\\Manifest\\Author' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Author.php',
+        'PharIo\\Manifest\\AuthorCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/values/AuthorCollection.php',
+        'PharIo\\Manifest\\AuthorCollectionIterator' => __DIR__ . '/..' . '/phar-io/manifest/src/values/AuthorCollectionIterator.php',
+        'PharIo\\Manifest\\AuthorElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/AuthorElement.php',
+        'PharIo\\Manifest\\AuthorElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/AuthorElementCollection.php',
+        'PharIo\\Manifest\\BundledComponent' => __DIR__ . '/..' . '/phar-io/manifest/src/values/BundledComponent.php',
+        'PharIo\\Manifest\\BundledComponentCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/values/BundledComponentCollection.php',
+        'PharIo\\Manifest\\BundledComponentCollectionIterator' => __DIR__ . '/..' . '/phar-io/manifest/src/values/BundledComponentCollectionIterator.php',
+        'PharIo\\Manifest\\BundlesElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/BundlesElement.php',
+        'PharIo\\Manifest\\ComponentElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ComponentElement.php',
+        'PharIo\\Manifest\\ComponentElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ComponentElementCollection.php',
+        'PharIo\\Manifest\\ContainsElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ContainsElement.php',
+        'PharIo\\Manifest\\CopyrightElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/CopyrightElement.php',
+        'PharIo\\Manifest\\CopyrightInformation' => __DIR__ . '/..' . '/phar-io/manifest/src/values/CopyrightInformation.php',
+        'PharIo\\Manifest\\ElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ElementCollection.php',
+        'PharIo\\Manifest\\Email' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Email.php',
+        'PharIo\\Manifest\\Exception' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/Exception.php',
+        'PharIo\\Manifest\\ExtElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ExtElement.php',
+        'PharIo\\Manifest\\ExtElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ExtElementCollection.php',
+        'PharIo\\Manifest\\Extension' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Extension.php',
+        'PharIo\\Manifest\\ExtensionElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ExtensionElement.php',
+        'PharIo\\Manifest\\InvalidApplicationNameException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php',
+        'PharIo\\Manifest\\InvalidEmailException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/InvalidEmailException.php',
+        'PharIo\\Manifest\\InvalidUrlException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/InvalidUrlException.php',
+        'PharIo\\Manifest\\Library' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Library.php',
+        'PharIo\\Manifest\\License' => __DIR__ . '/..' . '/phar-io/manifest/src/values/License.php',
+        'PharIo\\Manifest\\LicenseElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/LicenseElement.php',
+        'PharIo\\Manifest\\Manifest' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Manifest.php',
+        'PharIo\\Manifest\\ManifestDocument' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ManifestDocument.php',
+        'PharIo\\Manifest\\ManifestDocumentException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestDocumentException.php',
+        'PharIo\\Manifest\\ManifestDocumentLoadingException' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ManifestDocumentLoadingException.php',
+        'PharIo\\Manifest\\ManifestDocumentMapper' => __DIR__ . '/..' . '/phar-io/manifest/src/ManifestDocumentMapper.php',
+        'PharIo\\Manifest\\ManifestDocumentMapperException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php',
+        'PharIo\\Manifest\\ManifestElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ManifestElement.php',
+        'PharIo\\Manifest\\ManifestElementException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestElementException.php',
+        'PharIo\\Manifest\\ManifestLoader' => __DIR__ . '/..' . '/phar-io/manifest/src/ManifestLoader.php',
+        'PharIo\\Manifest\\ManifestLoaderException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestLoaderException.php',
+        'PharIo\\Manifest\\ManifestSerializer' => __DIR__ . '/..' . '/phar-io/manifest/src/ManifestSerializer.php',
+        'PharIo\\Manifest\\PhpElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/PhpElement.php',
+        'PharIo\\Manifest\\PhpExtensionRequirement' => __DIR__ . '/..' . '/phar-io/manifest/src/values/PhpExtensionRequirement.php',
+        'PharIo\\Manifest\\PhpVersionRequirement' => __DIR__ . '/..' . '/phar-io/manifest/src/values/PhpVersionRequirement.php',
+        'PharIo\\Manifest\\Requirement' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Requirement.php',
+        'PharIo\\Manifest\\RequirementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/values/RequirementCollection.php',
+        'PharIo\\Manifest\\RequirementCollectionIterator' => __DIR__ . '/..' . '/phar-io/manifest/src/values/RequirementCollectionIterator.php',
+        'PharIo\\Manifest\\RequiresElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/RequiresElement.php',
+        'PharIo\\Manifest\\Type' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Type.php',
+        'PharIo\\Manifest\\Url' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Url.php',
+        'PharIo\\Version\\AbstractVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/AbstractVersionConstraint.php',
+        'PharIo\\Version\\AndVersionConstraintGroup' => __DIR__ . '/..' . '/phar-io/version/src/AndVersionConstraintGroup.php',
+        'PharIo\\Version\\AnyVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/AnyVersionConstraint.php',
+        'PharIo\\Version\\ExactVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/ExactVersionConstraint.php',
+        'PharIo\\Version\\Exception' => __DIR__ . '/..' . '/phar-io/version/src/Exception.php',
+        'PharIo\\Version\\GreaterThanOrEqualToVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/GreaterThanOrEqualToVersionConstraint.php',
+        'PharIo\\Version\\InvalidVersionException' => __DIR__ . '/..' . '/phar-io/version/src/InvalidVersionException.php',
+        'PharIo\\Version\\OrVersionConstraintGroup' => __DIR__ . '/..' . '/phar-io/version/src/OrVersionConstraintGroup.php',
+        'PharIo\\Version\\PreReleaseSuffix' => __DIR__ . '/..' . '/phar-io/version/src/PreReleaseSuffix.php',
+        'PharIo\\Version\\SpecificMajorAndMinorVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/SpecificMajorAndMinorVersionConstraint.php',
+        'PharIo\\Version\\SpecificMajorVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/SpecificMajorVersionConstraint.php',
+        'PharIo\\Version\\UnsupportedVersionConstraintException' => __DIR__ . '/..' . '/phar-io/version/src/UnsupportedVersionConstraintException.php',
+        'PharIo\\Version\\Version' => __DIR__ . '/..' . '/phar-io/version/src/Version.php',
+        'PharIo\\Version\\VersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/VersionConstraint.php',
+        'PharIo\\Version\\VersionConstraintParser' => __DIR__ . '/..' . '/phar-io/version/src/VersionConstraintParser.php',
+        'PharIo\\Version\\VersionConstraintValue' => __DIR__ . '/..' . '/phar-io/version/src/VersionConstraintValue.php',
+        'PharIo\\Version\\VersionNumber' => __DIR__ . '/..' . '/phar-io/version/src/VersionNumber.php',
+        'QrReader' => __DIR__ . '/../..' . '/app/libs/qrlib/QrReader.php',
+        'SebastianBergmann\\CodeCoverage\\CodeCoverage' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/CodeCoverage.php',
+        'SebastianBergmann\\CodeCoverage\\CoveredCodeNotExecutedException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/CoveredCodeNotExecutedException.php',
+        'SebastianBergmann\\CodeCoverage\\Driver\\Driver' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/Driver.php',
+        'SebastianBergmann\\CodeCoverage\\Driver\\HHVM' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/HHVM.php',
+        'SebastianBergmann\\CodeCoverage\\Driver\\PHPDBG' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/PHPDBG.php',
+        'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/Xdebug.php',
+        'SebastianBergmann\\CodeCoverage\\Exception' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/Exception.php',
+        'SebastianBergmann\\CodeCoverage\\Filter' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Filter.php',
+        'SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php',
+        'SebastianBergmann\\CodeCoverage\\MissingCoversAnnotationException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/MissingCoversAnnotationException.php',
+        'SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/AbstractNode.php',
+        'SebastianBergmann\\CodeCoverage\\Node\\Builder' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Builder.php',
+        'SebastianBergmann\\CodeCoverage\\Node\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Directory.php',
+        'SebastianBergmann\\CodeCoverage\\Node\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/File.php',
+        'SebastianBergmann\\CodeCoverage\\Node\\Iterator' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Iterator.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Clover' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Clover.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Crap4j.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Facade.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\PHP' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/PHP.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Text' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Text.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Xml\\BuildInformation' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/BuildInformation.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Coverage.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Directory.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Facade.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/File.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Method.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Node.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Project.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Report.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Source' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Source.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Tests.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Totals.php',
+        'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Unit.php',
+        'SebastianBergmann\\CodeCoverage\\RuntimeException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/RuntimeException.php',
+        'SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php',
+        'SebastianBergmann\\CodeCoverage\\Util' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Util.php',
+        'SebastianBergmann\\CodeCoverage\\Version' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Version.php',
+        'SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => __DIR__ . '/..' . '/sebastian/code-unit-reverse-lookup/src/Wizard.php',
+        'SebastianBergmann\\Comparator\\ArrayComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ArrayComparator.php',
+        'SebastianBergmann\\Comparator\\Comparator' => __DIR__ . '/..' . '/sebastian/comparator/src/Comparator.php',
+        'SebastianBergmann\\Comparator\\ComparisonFailure' => __DIR__ . '/..' . '/sebastian/comparator/src/ComparisonFailure.php',
+        'SebastianBergmann\\Comparator\\DOMNodeComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/DOMNodeComparator.php',
+        'SebastianBergmann\\Comparator\\DateTimeComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/DateTimeComparator.php',
+        'SebastianBergmann\\Comparator\\DoubleComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/DoubleComparator.php',
+        'SebastianBergmann\\Comparator\\ExceptionComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ExceptionComparator.php',
+        'SebastianBergmann\\Comparator\\Factory' => __DIR__ . '/..' . '/sebastian/comparator/src/Factory.php',
+        'SebastianBergmann\\Comparator\\MockObjectComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/MockObjectComparator.php',
+        'SebastianBergmann\\Comparator\\NumericComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/NumericComparator.php',
+        'SebastianBergmann\\Comparator\\ObjectComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ObjectComparator.php',
+        'SebastianBergmann\\Comparator\\ResourceComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ResourceComparator.php',
+        'SebastianBergmann\\Comparator\\ScalarComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ScalarComparator.php',
+        'SebastianBergmann\\Comparator\\SplObjectStorageComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/SplObjectStorageComparator.php',
+        'SebastianBergmann\\Comparator\\TypeComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/TypeComparator.php',
+        'SebastianBergmann\\Diff\\Chunk' => __DIR__ . '/..' . '/sebastian/diff/src/Chunk.php',
+        'SebastianBergmann\\Diff\\Diff' => __DIR__ . '/..' . '/sebastian/diff/src/Diff.php',
+        'SebastianBergmann\\Diff\\Differ' => __DIR__ . '/..' . '/sebastian/diff/src/Differ.php',
+        'SebastianBergmann\\Diff\\Exception' => __DIR__ . '/..' . '/sebastian/diff/src/Exception/Exception.php',
+        'SebastianBergmann\\Diff\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/diff/src/Exception/InvalidArgumentException.php',
+        'SebastianBergmann\\Diff\\Line' => __DIR__ . '/..' . '/sebastian/diff/src/Line.php',
+        'SebastianBergmann\\Diff\\LongestCommonSubsequenceCalculator' => __DIR__ . '/..' . '/sebastian/diff/src/LongestCommonSubsequenceCalculator.php',
+        'SebastianBergmann\\Diff\\MemoryEfficientLongestCommonSubsequenceCalculator' => __DIR__ . '/..' . '/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php',
+        'SebastianBergmann\\Diff\\Output\\AbstractChunkOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php',
+        'SebastianBergmann\\Diff\\Output\\DiffOnlyOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php',
+        'SebastianBergmann\\Diff\\Output\\DiffOutputBuilderInterface' => __DIR__ . '/..' . '/sebastian/diff/src/Output/DiffOutputBuilderInterface.php',
+        'SebastianBergmann\\Diff\\Output\\UnifiedDiffOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php',
+        'SebastianBergmann\\Diff\\Parser' => __DIR__ . '/..' . '/sebastian/diff/src/Parser.php',
+        'SebastianBergmann\\Diff\\TimeEfficientLongestCommonSubsequenceCalculator' => __DIR__ . '/..' . '/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php',
+        'SebastianBergmann\\Environment\\Console' => __DIR__ . '/..' . '/sebastian/environment/src/Console.php',
+        'SebastianBergmann\\Environment\\OperatingSystem' => __DIR__ . '/..' . '/sebastian/environment/src/OperatingSystem.php',
+        'SebastianBergmann\\Environment\\Runtime' => __DIR__ . '/..' . '/sebastian/environment/src/Runtime.php',
+        'SebastianBergmann\\Exporter\\Exporter' => __DIR__ . '/..' . '/sebastian/exporter/src/Exporter.php',
+        'SebastianBergmann\\GlobalState\\Blacklist' => __DIR__ . '/..' . '/sebastian/global-state/src/Blacklist.php',
+        'SebastianBergmann\\GlobalState\\CodeExporter' => __DIR__ . '/..' . '/sebastian/global-state/src/CodeExporter.php',
+        'SebastianBergmann\\GlobalState\\Exception' => __DIR__ . '/..' . '/sebastian/global-state/src/exceptions/Exception.php',
+        'SebastianBergmann\\GlobalState\\Restorer' => __DIR__ . '/..' . '/sebastian/global-state/src/Restorer.php',
+        'SebastianBergmann\\GlobalState\\RuntimeException' => __DIR__ . '/..' . '/sebastian/global-state/src/exceptions/RuntimeException.php',
+        'SebastianBergmann\\GlobalState\\Snapshot' => __DIR__ . '/..' . '/sebastian/global-state/src/Snapshot.php',
+        'SebastianBergmann\\ObjectEnumerator\\Enumerator' => __DIR__ . '/..' . '/sebastian/object-enumerator/src/Enumerator.php',
+        'SebastianBergmann\\ObjectEnumerator\\Exception' => __DIR__ . '/..' . '/sebastian/object-enumerator/src/Exception.php',
+        'SebastianBergmann\\ObjectEnumerator\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/object-enumerator/src/InvalidArgumentException.php',
+        'SebastianBergmann\\ObjectReflector\\Exception' => __DIR__ . '/..' . '/sebastian/object-reflector/src/Exception.php',
+        'SebastianBergmann\\ObjectReflector\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/object-reflector/src/InvalidArgumentException.php',
+        'SebastianBergmann\\ObjectReflector\\ObjectReflector' => __DIR__ . '/..' . '/sebastian/object-reflector/src/ObjectReflector.php',
+        'SebastianBergmann\\RecursionContext\\Context' => __DIR__ . '/..' . '/sebastian/recursion-context/src/Context.php',
+        'SebastianBergmann\\RecursionContext\\Exception' => __DIR__ . '/..' . '/sebastian/recursion-context/src/Exception.php',
+        'SebastianBergmann\\RecursionContext\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/recursion-context/src/InvalidArgumentException.php',
+        'SebastianBergmann\\ResourceOperations\\ResourceOperations' => __DIR__ . '/..' . '/sebastian/resource-operations/src/ResourceOperations.php',
+        'SebastianBergmann\\Version' => __DIR__ . '/..' . '/sebastian/version/src/Version.php',
+        'SessionUpdateTimestampHandlerInterface' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php',
+        'Text_Template' => __DIR__ . '/..' . '/phpunit/php-text-template/src/Template.php',
+        'TheSeer\\Tokenizer\\Exception' => __DIR__ . '/..' . '/theseer/tokenizer/src/Exception.php',
+        'TheSeer\\Tokenizer\\NamespaceUri' => __DIR__ . '/..' . '/theseer/tokenizer/src/NamespaceUri.php',
+        'TheSeer\\Tokenizer\\NamespaceUriException' => __DIR__ . '/..' . '/theseer/tokenizer/src/NamespaceUriException.php',
+        'TheSeer\\Tokenizer\\Token' => __DIR__ . '/..' . '/theseer/tokenizer/src/Token.php',
+        'TheSeer\\Tokenizer\\TokenCollection' => __DIR__ . '/..' . '/theseer/tokenizer/src/TokenCollection.php',
+        'TheSeer\\Tokenizer\\TokenCollectionException' => __DIR__ . '/..' . '/theseer/tokenizer/src/TokenCollectionException.php',
+        'TheSeer\\Tokenizer\\Tokenizer' => __DIR__ . '/..' . '/theseer/tokenizer/src/Tokenizer.php',
+        'TheSeer\\Tokenizer\\XMLSerializer' => __DIR__ . '/..' . '/theseer/tokenizer/src/XMLSerializer.php',
+        'TypeError' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/TypeError.php',
+        'WXBizDataCrypt' => __DIR__ . '/../..' . '/app/Helper/wxbdc/WXBizDataCrypt.php',
+        'Zxing\\Binarizer' => __DIR__ . '/../..' . '/app/libs/qrlib/Binarizer.php',
+        'Zxing\\BinaryBitmap' => __DIR__ . '/../..' . '/app/libs/qrlib/BinaryBitmap.php',
+        'Zxing\\ChecksumException' => __DIR__ . '/../..' . '/app/libs/qrlib/ChecksumException.php',
+        'Zxing\\Common\\BitArray' => __DIR__ . '/../..' . '/app/libs/qrlib/common/BitArray.php',
+        'Zxing\\Common\\BitMatrix' => __DIR__ . '/../..' . '/app/libs/qrlib/common/BitMatrix.php',
+        'Zxing\\Common\\BitSource' => __DIR__ . '/../..' . '/app/libs/qrlib/common/BitSource.php',
+        'Zxing\\Common\\CharacterSetECI' => __DIR__ . '/../..' . '/app/libs/qrlib/common/CharacterSetEci.php',
+        'Zxing\\Common\\CharacterSetEci\\AbstractEnum\\AbstractEnum' => __DIR__ . '/../..' . '/app/libs/qrlib/common/AbstractEnum.php',
+        'Zxing\\Common\\DecoderResult' => __DIR__ . '/../..' . '/app/libs/qrlib/common/DecoderResult.php',
+        'Zxing\\Common\\DefaultGridSampler' => __DIR__ . '/../..' . '/app/libs/qrlib/common/DefaultGridSampler.php',
+        'Zxing\\Common\\DetectorResult' => __DIR__ . '/../..' . '/app/libs/qrlib/common/DetectorResult.php',
+        'Zxing\\Common\\Detector\\MathUtils' => __DIR__ . '/../..' . '/app/libs/qrlib/common/detector/MathUtils.php',
+        'Zxing\\Common\\Detector\\MonochromeRectangleDetector' => __DIR__ . '/../..' . '/app/libs/qrlib/common/detector/MonochromeRectangleDetector.php',
+        'Zxing\\Common\\GlobalHistogramBinarizer' => __DIR__ . '/../..' . '/app/libs/qrlib/common/GlobalHistogramBinarizer.php',
+        'Zxing\\Common\\GridSampler' => __DIR__ . '/../..' . '/app/libs/qrlib/common/GridSampler.php',
+        'Zxing\\Common\\HybridBinarizer' => __DIR__ . '/../..' . '/app/libs/qrlib/common/HybridBinarizer.php',
+        'Zxing\\Common\\PerspectiveTransform' => __DIR__ . '/../..' . '/app/libs/qrlib/common/PerspectiveTransform.php',
+        'Zxing\\Common\\Reedsolomon\\GenericGF' => __DIR__ . '/../..' . '/app/libs/qrlib/common/reedsolomon/GenericGF.php',
+        'Zxing\\Common\\Reedsolomon\\GenericGFPoly' => __DIR__ . '/../..' . '/app/libs/qrlib/common/reedsolomon/GenericGFPoly.php',
+        'Zxing\\Common\\Reedsolomon\\ReedSolomonDecoder' => __DIR__ . '/../..' . '/app/libs/qrlib/common/reedsolomon/ReedSolomonDecoder.php',
+        'Zxing\\Common\\Reedsolomon\\ReedSolomonException' => __DIR__ . '/../..' . '/app/libs/qrlib/common/reedsolomon/ReedSolomonException.php',
+        'Zxing\\FormatException' => __DIR__ . '/../..' . '/app/libs/qrlib/FormatException.php',
+        'Zxing\\GDLuminanceSource' => __DIR__ . '/../..' . '/app/libs/qrlib/GDLuminanceSource.php',
+        'Zxing\\IMagickLuminanceSource' => __DIR__ . '/../..' . '/app/libs/qrlib/IMagickLuminanceSource.php',
+        'Zxing\\LuminanceSource' => __DIR__ . '/../..' . '/app/libs/qrlib/LuminanceSource.php',
+        'Zxing\\NotFoundException' => __DIR__ . '/../..' . '/app/libs/qrlib/NotFoundException.php',
+        'Zxing\\PlanarYUVLuminanceSource' => __DIR__ . '/../..' . '/app/libs/qrlib/PlanarYUVLuminanceSource.php',
+        'Zxing\\Qrcode\\Decoder\\BitMatrixParser' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/decoder/BitMatrixParser.php',
+        'Zxing\\Qrcode\\Decoder\\DataBlock' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/decoder/DataBlock.php',
+        'Zxing\\Qrcode\\Decoder\\DataMask' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/decoder/DataMask.php',
+        'Zxing\\Qrcode\\Decoder\\DataMask000' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/decoder/DataMask.php',
+        'Zxing\\Qrcode\\Decoder\\DataMask001' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/decoder/DataMask.php',
+        'Zxing\\Qrcode\\Decoder\\DataMask010' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/decoder/DataMask.php',
+        'Zxing\\Qrcode\\Decoder\\DataMask011' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/decoder/DataMask.php',
+        'Zxing\\Qrcode\\Decoder\\DataMask100' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/decoder/DataMask.php',
+        'Zxing\\Qrcode\\Decoder\\DataMask101' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/decoder/DataMask.php',
+        'Zxing\\Qrcode\\Decoder\\DataMask110' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/decoder/DataMask.php',
+        'Zxing\\Qrcode\\Decoder\\DataMask111' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/decoder/DataMask.php',
+        'Zxing\\Qrcode\\Decoder\\DecodedBitStreamParser' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/decoder/DecodedBitStreamParser.php',
+        'Zxing\\Qrcode\\Decoder\\Decoder' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/decoder/Decoder.php',
+        'Zxing\\Qrcode\\Decoder\\ECB' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/decoder/Version.php',
+        'Zxing\\Qrcode\\Decoder\\ECBlocks' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/decoder/Version.php',
+        'Zxing\\Qrcode\\Decoder\\ErrorCorrectionLevel' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/decoder/ErrorCorrectionLevel.php',
+        'Zxing\\Qrcode\\Decoder\\FormatInformation' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/decoder/FormatInformation.php',
+        'Zxing\\Qrcode\\Decoder\\Mode' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/decoder/Mode.php',
+        'Zxing\\Qrcode\\Decoder\\Version' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/decoder/Version.php',
+        'Zxing\\Qrcode\\Detector\\AlignmentPattern' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/detector/AlignmentPattern.php',
+        'Zxing\\Qrcode\\Detector\\AlignmentPatternFinder' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/detector/AlignmentPatternFinder.php',
+        'Zxing\\Qrcode\\Detector\\Detector' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/detector/Detector.php',
+        'Zxing\\Qrcode\\Detector\\FinderPattern' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/detector/FinderPattern.php',
+        'Zxing\\Qrcode\\Detector\\FinderPatternFinder' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/detector/FinderPatternFinder.php',
+        'Zxing\\Qrcode\\Detector\\FinderPatternInfo' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/detector/FinderPatternInfo.php',
+        'Zxing\\Qrcode\\QRCodeReader' => __DIR__ . '/../..' . '/app/libs/qrlib/qrcode/QRCodeReader.php',
+        'Zxing\\RGBLuminanceSource' => __DIR__ . '/../..' . '/app/libs/qrlib/RGBLuminanceSource.php',
+        'Zxing\\Reader' => __DIR__ . '/../..' . '/app/libs/qrlib/Reader.php',
+        'Zxing\\ReaderException' => __DIR__ . '/../..' . '/app/libs/qrlib/ReaderException.php',
+        'Zxing\\Result' => __DIR__ . '/../..' . '/app/libs/qrlib/Result.php',
+        'Zxing\\ResultPoint' => __DIR__ . '/../..' . '/app/libs/qrlib/ResultPoint.php',
+    );
+
+    public static function getInitializer(ClassLoader $loader)
+    {
+        return \Closure::bind(function () use ($loader) {
+            $loader->prefixLengthsPsr4 = ComposerStaticInitc6dd7fb340b545d4fe9af80b20aaf9c6::$prefixLengthsPsr4;
+            $loader->prefixDirsPsr4 = ComposerStaticInitc6dd7fb340b545d4fe9af80b20aaf9c6::$prefixDirsPsr4;
+            $loader->fallbackDirsPsr4 = ComposerStaticInitc6dd7fb340b545d4fe9af80b20aaf9c6::$fallbackDirsPsr4;
+            $loader->prefixesPsr0 = ComposerStaticInitc6dd7fb340b545d4fe9af80b20aaf9c6::$prefixesPsr0;
+            $loader->fallbackDirsPsr0 = ComposerStaticInitc6dd7fb340b545d4fe9af80b20aaf9c6::$fallbackDirsPsr0;
+            $loader->classMap = ComposerStaticInitc6dd7fb340b545d4fe9af80b20aaf9c6::$classMap;
+
+        }, null, ClassLoader::class);
+    }
+}

+ 19 - 0
vendor/composer/ca-bundle/LICENSE

xqd
@@ -0,0 +1,19 @@
+Copyright (C) 2016 Composer
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+of the Software, and to permit persons to whom the Software is furnished to do
+so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.

+ 85 - 0
vendor/composer/ca-bundle/README.md

xqd
@@ -0,0 +1,85 @@
+composer/ca-bundle
+==================
+
+Small utility library that lets you find a path to the system CA bundle,
+and includes a fallback to the Mozilla CA bundle.
+
+Originally written as part of [composer/composer](https://github.com/composer/composer),
+now extracted and made available as a stand-alone library.
+
+
+Installation
+------------
+
+Install the latest version with:
+
+```bash
+$ composer require composer/ca-bundle
+```
+
+
+Requirements
+------------
+
+* PHP 5.3.2 is required but using the latest version of PHP is highly recommended.
+
+
+Basic usage
+-----------
+
+# `Composer\CaBundle\CaBundle`
+
+- `CaBundle::getSystemCaRootBundlePath()`: Returns the system CA bundle path, or a path to the bundled one as fallback
+- `CaBundle::getBundledCaBundlePath()`: Returns the path to the bundled CA file
+- `CaBundle::validateCaFile($filename)`: Validates a CA file using opensl_x509_parse only if it is safe to use
+- `CaBundle::isOpensslParseSafe()`: Test if it is safe to use the PHP function openssl_x509_parse()
+- `CaBundle::reset()`: Resets the static caches
+
+
+## To use with curl
+
+```php
+$curl = curl_init("https://example.org/");
+
+$caPathOrFile = \Composer\CaBundle\CaBundle::getSystemCaRootBundlePath();
+if (is_dir($caPathOrFile) || (is_link($caPathOrFile) && is_dir(readlink($caPathOrFile)))) {
+    curl_setopt($curl, CURLOPT_CAPATH, $caPathOrFile);
+} else {
+    curl_setopt($curl, CURLOPT_CAINFO, $caPathOrFile);
+}
+
+$result = curl_exec($curl);
+```
+
+## To use with php streams
+
+```php
+$opts = array(
+    'http' => array(
+        'method' => "GET"
+    )
+);
+
+$caPathOrFile = \Composer\CaBundle\CaBundle::getSystemCaRootBundlePath();
+if (is_dir($caPathOrFile) || (is_link($caPathOrFile) && is_dir(readlink($caPathOrFile)))) {
+    $opts['ssl']['capath'] = $caPathOrFile;
+} else {
+    $opts['ssl']['cafile'] = $caPathOrFile;
+}
+
+$context = stream_context_create($opts);
+$result = file_get_contents('https://example.com', false, $context);
+```
+
+## To use with Guzzle
+
+```php
+$client = new \GuzzleHttp\Client([
+    \GuzzleHttp\RequestOptions::VERIFY => \Composer\CaBundle\CaBundle::getSystemCaRootBundlePath()
+]);
+```
+
+License
+-------
+
+composer/ca-bundle is licensed under the MIT License, see the LICENSE file for details.

+ 54 - 0
vendor/composer/ca-bundle/composer.json

xqd
@@ -0,0 +1,54 @@
+{
+    "name": "composer/ca-bundle",
+    "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
+    "type": "library",
+    "license": "MIT",
+    "keywords": [
+        "cabundle",
+        "cacert",
+        "certificate",
+        "ssl",
+        "tls"
+    ],
+    "authors": [
+        {
+            "name": "Jordi Boggiano",
+            "email": "j.boggiano@seld.be",
+            "homepage": "http://seld.be"
+        }
+    ],
+    "support": {
+        "irc": "irc://irc.freenode.org/composer",
+        "issues": "https://github.com/composer/ca-bundle/issues"
+    },
+    "require": {
+        "ext-openssl": "*",
+        "ext-pcre": "*",
+        "php": "^5.3.2 || ^7.0"
+    },
+    "require-dev": {
+        "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
+        "psr/log": "^1.0",
+        "symfony/process": "^2.5 || ^3.0 || ^4.0"
+    },
+    "autoload": {
+        "psr-4": {
+            "Composer\\CaBundle\\": "src"
+        }
+    },
+    "autoload-dev": {
+        "psr-4": {
+            "Composer\\CaBundle\\": "tests"
+        }
+    },
+    "extra": {
+        "branch-alias": {
+            "dev-master": "1.x-dev"
+        }
+    },
+    "config": {
+        "platform": {
+            "php": "5.3.9"
+        }
+    }
+}

+ 3240 - 0
vendor/composer/ca-bundle/res/cacert.pem

xqd
@@ -0,0 +1,3240 @@
+##
+## Bundle of CA Root Certificates
+##
+## Certificate data from Mozilla as of: Wed Oct 17 03:12:10 2018 GMT
+##
+## This is a bundle of X.509 certificates of public Certificate Authorities
+## (CA). These were automatically extracted from Mozilla's root certificates
+## file (certdata.txt).  This file can be found in the mozilla source tree:
+## https://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt
+##
+## It contains the certificates in PEM format and therefore
+## can be directly used with curl / libcurl / php_curl, or with
+## an Apache+mod_ssl webserver for SSL client authentication.
+## Just configure this file as the SSLCACertificateFile.
+##
+## Conversion done with mk-ca-bundle.pl version 1.27.
+## SHA256: 3f875d87fee4ce3d966c69f1d6c111aa95c0143ade59e4fa24882c582bb5f0ca
+##
+
+
+GlobalSign Root CA
+==================
+-----BEGIN CERTIFICATE-----
+MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkGA1UEBhMCQkUx
+GTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jvb3QgQ0ExGzAZBgNVBAMTEkds
+b2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAwMDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNV
+BAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYD
+VQQDExJHbG9iYWxTaWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDa
+DuaZjc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavpxy0Sy6sc
+THAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp1Wrjsok6Vjk4bwY8iGlb
+Kk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdGsnUOhugZitVtbNV4FpWi6cgKOOvyJBNP
+c1STE4U6G7weNLWLBYy5d4ux2x8gkasJU26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrX
+gzT/LCrBbBlDSgeF59N89iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV
+HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0BAQUF
+AAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOzyj1hTdNGCbM+w6Dj
+Y1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE38NflNUVyRRBnMRddWQVDf9VMOyG
+j/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymPAbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhH
+hm4qxFYxldBniYUr+WymXUadDKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveC
+X4XSQRjbgbMEHMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A==
+-----END CERTIFICATE-----
+
+GlobalSign Root CA - R2
+=======================
+-----BEGIN CERTIFICATE-----
+MIIDujCCAqKgAwIBAgILBAAAAAABD4Ym5g0wDQYJKoZIhvcNAQEFBQAwTDEgMB4GA1UECxMXR2xv
+YmFsU2lnbiBSb290IENBIC0gUjIxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2Jh
+bFNpZ24wHhcNMDYxMjE1MDgwMDAwWhcNMjExMjE1MDgwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxT
+aWduIFJvb3QgQ0EgLSBSMjETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2ln
+bjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKbPJA6+Lm8omUVCxKs+IVSbC9N/hHD6
+ErPLv4dfxn+G07IwXNb9rfF73OX4YJYJkhD10FPe+3t+c4isUoh7SqbKSaZeqKeMWhG8eoLrvozp
+s6yWJQeXSpkqBy+0Hne/ig+1AnwblrjFuTosvNYSuetZfeLQBoZfXklqtTleiDTsvHgMCJiEbKjN
+S7SgfQx5TfC4LcshytVsW33hoCmEofnTlEnLJGKRILzdC9XZzPnqJworc5HGnRusyMvo4KD0L5CL
+TfuwNhv2GXqF4G3yYROIXJ/gkwpRl4pazq+r1feqCapgvdzZX99yqWATXgAByUr6P6TqBwMhAo6C
+ygPCm48CAwEAAaOBnDCBmTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E
+FgQUm+IHV2ccHsBqBt5ZtJot39wZhi4wNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2NybC5nbG9i
+YWxzaWduLm5ldC9yb290LXIyLmNybDAfBgNVHSMEGDAWgBSb4gdXZxwewGoG3lm0mi3f3BmGLjAN
+BgkqhkiG9w0BAQUFAAOCAQEAmYFThxxol4aR7OBKuEQLq4GsJ0/WwbgcQ3izDJr86iw8bmEbTUsp
+9Z8FHSbBuOmDAGJFtqkIk7mpM0sYmsL4h4hO291xNBrBVNpGP+DTKqttVCL1OmLNIG+6KYnX3ZHu
+01yiPqFbQfXf5WRDLenVOavSot+3i9DAgBkcRcAtjOj4LaR0VknFBbVPFd5uRHg5h6h+u/N5GJG7
+9G+dwfCMNYxdAfvDbbnvRG15RjF+Cv6pgsH/76tuIMRQyV+dTZsXjAzlAcmgQWpzU/qlULRuJQ/7
+TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg==
+-----END CERTIFICATE-----
+
+Verisign Class 3 Public Primary Certification Authority - G3
+============================================================
+-----BEGIN CERTIFICATE-----
+MIIEGjCCAwICEQCbfgZJoz5iudXukEhxKe9XMA0GCSqGSIb3DQEBBQUAMIHKMQswCQYDVQQGEwJV
+UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv
+cmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl
+IG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNh
+dGlvbiBBdXRob3JpdHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQsw
+CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRy
+dXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhv
+cml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkg
+Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
+ggEBAMu6nFL8eB8aHm8bN3O9+MlrlBIwT/A2R/XQkQr1F8ilYcEWQE37imGQ5XYgwREGfassbqb1
+EUGO+i2tKmFZpGcmTNDovFJbcCAEWNF6yaRpvIMXZK0Fi7zQWM6NjPXr8EJJC52XJ2cybuGukxUc
+cLwgTS8Y3pKI6GyFVxEa6X7jJhFUokWWVYPKMIno3Nij7SqAP395ZVc+FSBmCC+Vk7+qRy+oRpfw
+EuL+wgorUeZ25rdGt+INpsyow0xZVYnm6FNcHOqd8GIWC6fJXwzw3sJ2zq/3avL6QaaiMxTJ5Xpj
+055iN9WFZZ4O5lMkdBteHRJTW8cs54NJOxWuimi5V5cCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA
+ERSWwauSCPc/L8my/uRan2Te2yFPhpk0djZX3dAVL8WtfxUfN2JzPtTnX84XA9s1+ivbrmAJXx5f
+j267Cz3qWhMeDGBvtcC1IyIuBwvLqXTLR7sdwdela8wv0kL9Sd2nic9TutoAWii/gt/4uhMdUIaC
+/Y4wjylGsB49Ndo4YhYYSq3mtlFs3q9i6wHQHiT+eo8SGhJouPtmmRQURVyu565pF4ErWjfJXir0
+xuKhXFSbplQAz/DxwceYMBo7Nhbbo27q/a2ywtrvAkcTisDxszGtTxzhT5yvDwyd93gN2PQ1VoDa
+t20Xj50egWTh/sVFuq1ruQp6Tk9LhO5L8X3dEQ==
+-----END CERTIFICATE-----
+
+Entrust.net Premium 2048 Secure Server CA
+=========================================
+-----BEGIN CERTIFICATE-----
+MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChMLRW50cnVzdC5u
+ZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBpbmNvcnAuIGJ5IHJlZi4gKGxp
+bWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNV
+BAMTKkVudHJ1c3QubmV0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQx
+NzUwNTFaFw0yOTA3MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3
+d3d3LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxpYWIuKTEl
+MCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEGA1UEAxMqRW50cnVzdC5u
+ZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgpMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A
+MIIBCgKCAQEArU1LqRKGsuqjIAcVFmQqK0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOL
+Gp18EzoOH1u3Hs/lJBQesYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSr
+hRSGlVuXMlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVTXTzW
+nLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/HoZdenoVve8AjhUi
+VBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH4QIDAQABo0IwQDAOBgNVHQ8BAf8E
+BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJ
+KoZIhvcNAQEFBQADggEBADubj1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPy
+T/4xmf3IDExoU8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf
+zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5bu/8j72gZyxKT
+J1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+bYQLCIt+jerXmCHG8+c8eS9e
+nNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/ErfF6adulZkMV8gzURZVE=
+-----END CERTIFICATE-----
+
+Baltimore CyberTrust Root
+=========================
+-----BEGIN CERTIFICATE-----
+MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE
+ChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li
+ZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC
+SUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs
+dGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME
+uyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB
+UnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C
+G9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9
+XbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr
+l3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI
+VDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB
+BQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh
+cL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5
+hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa
+Y71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H
+RCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp
+-----END CERTIFICATE-----
+
+AddTrust External Root
+======================
+-----BEGIN CERTIFICATE-----
+MIIENjCCAx6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBvMQswCQYDVQQGEwJTRTEUMBIGA1UEChML
+QWRkVHJ1c3QgQUIxJjAkBgNVBAsTHUFkZFRydXN0IEV4dGVybmFsIFRUUCBOZXR3b3JrMSIwIAYD
+VQQDExlBZGRUcnVzdCBFeHRlcm5hbCBDQSBSb290MB4XDTAwMDUzMDEwNDgzOFoXDTIwMDUzMDEw
+NDgzOFowbzELMAkGA1UEBhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMSYwJAYDVQQLEx1BZGRU
+cnVzdCBFeHRlcm5hbCBUVFAgTmV0d29yazEiMCAGA1UEAxMZQWRkVHJ1c3QgRXh0ZXJuYWwgQ0Eg
+Um9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALf3GjPm8gAELTngTlvtH7xsD821
++iO2zt6bETOXpClMfZOfvUq8k+0DGuOPz+VtUFrWlymUWoCwSXrbLpX9uMq/NzgtHj6RQa1wVsfw
+Tz/oMp50ysiQVOnGXw94nZpAPA6sYapeFI+eh6FqUNzXmk6vBbOmcZSccbNQYArHE504B4YCqOmo
+aSYYkKtMsE8jqzpPhNjfzp/haW+710LXa0Tkx63ubUFfclpxCDezeWWkWaCUN/cALw3CknLa0Dhy
+2xSoRcRdKn23tNbE7qzNE0S3ySvdQwAl+mG5aWpYIxG3pzOPVnVZ9c0p10a3CitlttNCbxWyuHv7
+7+ldU9U0WicCAwEAAaOB3DCB2TAdBgNVHQ4EFgQUrb2YejS0Jvf6xCZU7wO94CTLVBowCwYDVR0P
+BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wgZkGA1UdIwSBkTCBjoAUrb2YejS0Jvf6xCZU7wO94CTL
+VBqhc6RxMG8xCzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEmMCQGA1UECxMdQWRk
+VHJ1c3QgRXh0ZXJuYWwgVFRQIE5ldHdvcmsxIjAgBgNVBAMTGUFkZFRydXN0IEV4dGVybmFsIENB
+IFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBALCb4IUlwtYj4g+WBpKdQZic2YR5gdkeWxQHIzZl
+j7DYd7usQWxHYINRsPkyPef89iYTx4AWpb9a/IfPeHmJIZriTAcKhjW88t5RxNKWt9x+Tu5w/Rw5
+6wwCURQtjr0W4MHfRnXnJK3s9EK0hZNwEGe6nQY1ShjTK3rMUUKhemPR5ruhxSvCNr4TDea9Y355
+e6cJDUCrat2PisP29owaQgVR1EX1n6diIWgVIEM8med8vSTYqZEXc4g/VhsxOBi0cQ+azcgOno4u
+G+GMmIPLHzHxREzGBHNJdmAPx/i9F4BrLunMTA5amnkPIAou1Z5jJh5VkpTYghdae9C8x49OhgQ=
+-----END CERTIFICATE-----
+
+Entrust Root Certification Authority
+====================================
+-----BEGIN CERTIFICATE-----
+MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMCVVMxFjAUBgNV
+BAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0Lm5ldC9DUFMgaXMgaW5jb3Jw
+b3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMWKGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsG
+A1UEAxMkRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0
+MloXDTI2MTEyNzIwNTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMu
+MTkwNwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSByZWZlcmVu
+Y2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNVBAMTJEVudHJ1c3QgUm9v
+dCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB
+ALaVtkNC+sZtKm9I35RMOVcF7sN5EUFoNu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYsz
+A9u3g3s+IIRe7bJWKKf44LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOww
+Cj0Yzfv9KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGIrb68
+j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi94DkZfs0Nw4pgHBN
+rziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOBsDCBrTAOBgNVHQ8BAf8EBAMCAQYw
+DwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAigA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1
+MzQyWjAfBgNVHSMEGDAWgBRokORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DH
+hmak8fdLQ/uEvW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA
+A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9tO1KzKtvn1ISM
+Y/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6ZuaAGAT/3B+XxFNSRuzFVJ7yVTa
+v52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTS
+W3iDVuycNsMm4hH2Z0kdkquM++v/eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0
+tHuu2guQOHXvgR1m0vdXcDazv/wor3ElhVsT/h5/WrQ8
+-----END CERTIFICATE-----
+
+GeoTrust Global CA
+==================
+-----BEGIN CERTIFICATE-----
+MIIDVDCCAjygAwIBAgIDAjRWMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVTMRYwFAYDVQQK
+Ew1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9iYWwgQ0EwHhcNMDIwNTIxMDQw
+MDAwWhcNMjIwNTIxMDQwMDAwWjBCMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5j
+LjEbMBkGA1UEAxMSR2VvVHJ1c3QgR2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB
+CgKCAQEA2swYYzD99BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9mOSm9BXiLnTjo
+BbdqfnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIuT8rxh0PBFpVXLVDviS2Aelet
+8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6cJmTM386DGXHKTubU1XupGc1V3sjs0l44U+Vc
+T4wt/lAjNvxm5suOpDkZALeVAjmRCw7+OC7RHQWa9k0+bw8HHa8sHo9gOeL6NlMTOdReJivbPagU
+vTLrGAMoUgRx5aszPeE4uwc2hGKceeoWMPRfwCvocWvk+QIDAQABo1MwUTAPBgNVHRMBAf8EBTAD
+AQH/MB0GA1UdDgQWBBTAephojYn7qwVkDBF9qn1luMrMTjAfBgNVHSMEGDAWgBTAephojYn7qwVk
+DBF9qn1luMrMTjANBgkqhkiG9w0BAQUFAAOCAQEANeMpauUvXVSOKVCUn5kaFOSPeCpilKInZ57Q
+zxpeR+nBsqTP3UEaBU6bS+5Kb1VSsyShNwrrZHYqLizz/Tt1kL/6cdjHPTfStQWVYrmm3ok9Nns4
+d0iXrKYgjy6myQzCsplFAMfOEVEiIuCl6rYVSAlk6l5PdPcFPseKUgzbFbS9bZvlxrFUaKnjaZC2
+mqUPuLk/IH2uSrW4nOQdtqvmlKXBx4Ot2/Unhw4EbNX/3aBd7YdStysVAq45pmp06drE57xNNB6p
+XE0zX5IJL4hmXXeXxx12E6nV5fEWCRE11azbJHFwLJhWC9kXtNHjUStedejV0NxPNO3CBWaAocvm
+Mw==
+-----END CERTIFICATE-----
+
+GeoTrust Universal CA
+=====================
+-----BEGIN CERTIFICATE-----
+MIIFaDCCA1CgAwIBAgIBATANBgkqhkiG9w0BAQUFADBFMQswCQYDVQQGEwJVUzEWMBQGA1UEChMN
+R2VvVHJ1c3QgSW5jLjEeMBwGA1UEAxMVR2VvVHJ1c3QgVW5pdmVyc2FsIENBMB4XDTA0MDMwNDA1
+MDAwMFoXDTI5MDMwNDA1MDAwMFowRTELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IElu
+Yy4xHjAcBgNVBAMTFUdlb1RydXN0IFVuaXZlcnNhbCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIP
+ADCCAgoCggIBAKYVVaCjxuAfjJ0hUNfBvitbtaSeodlyWL0AG0y/YckUHUWCq8YdgNY96xCcOq9t
+JPi8cQGeBvV8Xx7BDlXKg5pZMK4ZyzBIle0iN430SppyZj6tlcDgFgDgEB8rMQ7XlFTTQjOgNB0e
+RXbdT8oYN+yFFXoZCPzVx5zw8qkuEKmS5j1YPakWaDwvdSEYfyh3peFhF7em6fgemdtzbvQKoiFs
+7tqqhZJmr/Z6a4LauiIINQ/PQvE1+mrufislzDoR5G2vc7J2Ha3QsnhnGqQ5HFELZ1aD/ThdDc7d
+8Lsrlh/eezJS/R27tQahsiFepdaVaH/wmZ7cRQg+59IJDTWU3YBOU5fXtQlEIGQWFwMCTFMNaN7V
+qnJNk22CDtucvc+081xdVHppCZbW2xHBjXWotM85yM48vCR85mLK4b19p71XZQvk/iXttmkQ3Cga
+Rr0BHdCXteGYO8A3ZNY9lO4L4fUorgtWv3GLIylBjobFS1J72HGrH4oVpjuDWtdYAVHGTEHZf9hB
+Z3KiKN9gg6meyHv8U3NyWfWTehd2Ds735VzZC1U0oqpbtWpU5xPKV+yXbfReBi9Fi1jUIxaS5BZu
+KGNZMN9QAZxjiRqf2xeUgnA3wySemkfWWspOqGmJch+RbNt+nhutxx9z3SxPGWX9f5NAEC7S8O08
+ni4oPmkmM8V7AgMBAAGjYzBhMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNq7LqqwDLiIJlF0
+XG0D08DYj3rWMB8GA1UdIwQYMBaAFNq7LqqwDLiIJlF0XG0D08DYj3rWMA4GA1UdDwEB/wQEAwIB
+hjANBgkqhkiG9w0BAQUFAAOCAgEAMXjmx7XfuJRAyXHEqDXsRh3ChfMoWIawC/yOsjmPRFWrZIRc
+aanQmjg8+uUfNeVE44B5lGiku8SfPeE0zTBGi1QrlaXv9z+ZhP015s8xxtxqv6fXIwjhmF7DWgh2
+qaavdy+3YL1ERmrvl/9zlcGO6JP7/TG37FcREUWbMPEaiDnBTzynANXH/KttgCJwpQzgXQQpAvvL
+oJHRfNbDflDVnVi+QTjruXU8FdmbyUqDWcDaU/0zuzYYm4UPFd3uLax2k7nZAY1IEKj79TiG8dsK
+xr2EoyNB3tZ3b4XUhRxQ4K5RirqNPnbiucon8l+f725ZDQbYKxek0nxru18UGkiPGkzns0ccjkxF
+KyDuSN/n3QmOGKjaQI2SJhFTYXNd673nxE0pN2HrrDktZy4W1vUAg4WhzH92xH3kt0tm7wNFYGm2
+DFKWkoRepqO1pD4r2czYG0eq8kTaT/kD6PAUyz/zg97QwVTjt+gKN02LIFkDMBmhLMi9ER/frslK
+xfMnZmaGrGiR/9nmUxwPi1xpZQomyB40w11Re9epnAahNt3ViZS82eQtDF4JbAiXfKM9fJP/P6EU
+p8+1Xevb2xzEdt+Iub1FBZUbrvxGakyvSOPOrg/SfuvmbJxPgWp6ZKy7PtXny3YuxadIwVyQD8vI
+P/rmMuGNG2+k5o7Y+SlIis5z/iw=
+-----END CERTIFICATE-----
+
+GeoTrust Universal CA 2
+=======================
+-----BEGIN CERTIFICATE-----
+MIIFbDCCA1SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBHMQswCQYDVQQGEwJVUzEWMBQGA1UEChMN
+R2VvVHJ1c3QgSW5jLjEgMB4GA1UEAxMXR2VvVHJ1c3QgVW5pdmVyc2FsIENBIDIwHhcNMDQwMzA0
+MDUwMDAwWhcNMjkwMzA0MDUwMDAwWjBHMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3Qg
+SW5jLjEgMB4GA1UEAxMXR2VvVHJ1c3QgVW5pdmVyc2FsIENBIDIwggIiMA0GCSqGSIb3DQEBAQUA
+A4ICDwAwggIKAoICAQCzVFLByT7y2dyxUxpZKeexw0Uo5dfR7cXFS6GqdHtXr0om/Nj1XqduGdt0
+DE81WzILAePb63p3NeqqWuDW6KFXlPCQo3RWlEQwAx5cTiuFJnSCegx2oG9NzkEtoBUGFF+3Qs17
+j1hhNNwqCPkuwwGmIkQcTAeC5lvO0Ep8BNMZcyfwqph/Lq9O64ceJHdqXbboW0W63MOhBW9Wjo8Q
+JqVJwy7XQYci4E+GymC16qFjwAGXEHm9ADwSbSsVsaxLse4YuU6W3Nx2/zu+z18DwPw76L5GG//a
+QMJS9/7jOvdqdzXQ2o3rXhhqMcceujwbKNZrVMaqW9eiLBsZzKIC9ptZvTdrhrVtgrrY6slWvKk2
+WP0+GfPtDCapkzj4T8FdIgbQl+rhrcZV4IErKIM6+vR7IVEAvlI4zs1meaj0gVbi0IMJR1FbUGrP
+20gaXT73y/Zl92zxlfgCOzJWgjl6W70viRu/obTo/3+NjN8D8WBOWBFM66M/ECuDmgFz2ZRthAAn
+ZqzwcEAJQpKtT5MNYQlRJNiS1QuUYbKHsu3/mjX/hVTK7URDrBs8FmtISgocQIgfksILAAX/8sgC
+SqSqqcyZlpwvWOB94b67B9xfBHJcMTTD7F8t4D1kkCLm0ey4Lt1ZrtmhN79UNdxzMk+MBB4zsslG
+8dhcyFVQyWi9qLo2CQIDAQABo2MwYTAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR281Xh+qQ2
++/CfXGJx7Tz0RzgQKzAfBgNVHSMEGDAWgBR281Xh+qQ2+/CfXGJx7Tz0RzgQKzAOBgNVHQ8BAf8E
+BAMCAYYwDQYJKoZIhvcNAQEFBQADggIBAGbBxiPz2eAubl/oz66wsCVNK/g7WJtAJDday6sWSf+z
+dXkzoS9tcBc0kf5nfo/sm+VegqlVHy/c1FEHEv6sFj4sNcZj/NwQ6w2jqtB8zNHQL1EuxBRa3ugZ
+4T7GzKQp5y6EqgYweHZUcyiYWTjgAA1i00J9IZ+uPTqM1fp3DRgrFg5fNuH8KrUwJM/gYwx7WBr+
+mbpCErGR9Hxo4sjoryzqyX6uuyo9DRXcNJW2GHSoag/HtPQTxORb7QrSpJdMKu0vbBKJPfEncKpq
+A1Ihn0CoZ1Dy81of398j9tx4TuaYT1U6U+Pv8vSfx3zYWK8pIpe44L2RLrB27FcRz+8pRPPphXpg
+Y+RdM4kX2TGq2tbzGDVyz4crL2MjhF2EjD9XoIj8mZEoJmmZ1I+XRL6O1UixpCgp8RW04eWe3fiP
+pm8m1wk8OhwRDqZsN/etRIcsKMfYdIKz0G9KV7s1KSegi+ghp4dkNl3M2Basx7InQJJVOCiNUW7d
+FGdTbHFcJoRNdVq2fmBWqU2t+5sel/MN2dKXVHfaPRK34B7vCAas+YWH6aLcr34YEoP9VhdBLtUp
+gn2Z9DH2canPLAEnpQW5qrJITirvn5NSUZU8UnOOVkwXQMAJKOSLakhT2+zNVVXxxvjpoixMptEm
+X36vWkzaH6byHCx+rgIW0lbQL1dTR+iS
+-----END CERTIFICATE-----
+
+Visa eCommerce Root
+===================
+-----BEGIN CERTIFICATE-----
+MIIDojCCAoqgAwIBAgIQE4Y1TR0/BvLB+WUF1ZAcYjANBgkqhkiG9w0BAQUFADBrMQswCQYDVQQG
+EwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMmVmlzYSBJbnRlcm5hdGlvbmFsIFNlcnZpY2Ug
+QXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNvbW1lcmNlIFJvb3QwHhcNMDIwNjI2MDIxODM2
+WhcNMjIwNjI0MDAxNjEyWjBrMQswCQYDVQQGEwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMm
+VmlzYSBJbnRlcm5hdGlvbmFsIFNlcnZpY2UgQXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNv
+bW1lcmNlIFJvb3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvV95WHm6h2mCxlCfL
+F9sHP4CFT8icttD0b0/Pmdjh28JIXDqsOTPHH2qLJj0rNfVIsZHBAk4ElpF7sDPwsRROEW+1QK8b
+RaVK7362rPKgH1g/EkZgPI2h4H3PVz4zHvtH8aoVlwdVZqW1LS7YgFmypw23RuwhY/81q6UCzyr0
+TP579ZRdhE2o8mCP2w4lPJ9zcc+U30rq299yOIzzlr3xF7zSujtFWsan9sYXiwGd/BmoKoMWuDpI
+/k4+oKsGGelT84ATB+0tvz8KPFUgOSwsAGl0lUq8ILKpeeUYiZGo3BxN77t+Nwtd/jmliFKMAGzs
+GHxBvfaLdXe6YJ2E5/4tAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEG
+MB0GA1UdDgQWBBQVOIMPPyw/cDMezUb+B4wg4NfDtzANBgkqhkiG9w0BAQUFAAOCAQEAX/FBfXxc
+CLkr4NWSR/pnXKUTwwMhmytMiUbPWU3J/qVAtmPN3XEolWcRzCSs00Rsca4BIGsDoo8Ytyk6feUW
+YFN4PMCvFYP3j1IzJL1kk5fui/fbGKhtcbP3LBfQdCVp9/5rPJS+TUtBjE7ic9DjkCJzQ83z7+pz
+zkWKsKZJ/0x9nXGIxHYdkFsd7v3M9+79YKWxehZx0RbQfBI8bGmX265fOZpwLwU8GUYEmSA20GBu
+YQa7FkKMcPcw++DbZqMAAb3mLNqRX6BGi01qnD093QVG/na/oAo85ADmJ7f/hC3euiInlhBx6yLt
+398znM/jra6O1I7mT1GvFpLgXPYHDw==
+-----END CERTIFICATE-----
+
+Comodo AAA Services root
+========================
+-----BEGIN CERTIFICATE-----
+MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS
+R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg
+TGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmljYXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAw
+MFoXDTI4MTIzMTIzNTk1OVowezELMAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hl
+c3RlcjEQMA4GA1UEBwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNV
+BAMMGEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
+ggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQuaBtDFcCLNSS1UY8y2bmhG
+C1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe3M/vg4aijJRPn2jymJBGhCfHdr/jzDUs
+i14HZGWCwEiwqJH5YZ92IFCokcdmtet4YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszW
+Y19zjNoFmag4qMsXeDZRrOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjH
+Ypy+g8cmez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQUoBEK
+Iz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wewYDVR0f
+BHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20vQUFBQ2VydGlmaWNhdGVTZXJ2aWNl
+cy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29tb2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2Vz
+LmNybDANBgkqhkiG9w0BAQUFAAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm
+7l3sAg9g1o1QGE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz
+Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2G9w84FoVxp7Z
+8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsil2D4kF501KKaU73yqWjgom7C
+12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg==
+-----END CERTIFICATE-----
+
+QuoVadis Root CA
+================
+-----BEGIN CERTIFICATE-----
+MIIF0DCCBLigAwIBAgIEOrZQizANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJCTTEZMBcGA1UE
+ChMQUXVvVmFkaXMgTGltaXRlZDElMCMGA1UECxMcUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0
+eTEuMCwGA1UEAxMlUXVvVmFkaXMgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wMTAz
+MTkxODMzMzNaFw0yMTAzMTcxODMzMzNaMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRp
+cyBMaW1pdGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYDVQQD
+EyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEF
+AAOCAQ8AMIIBCgKCAQEAv2G1lVO6V/z68mcLOhrfEYBklbTRvM16z/Ypli4kVEAkOPcahdxYTMuk
+J0KX0J+DisPkBgNbAKVRHnAEdOLB1Dqr1607BxgFjv2DrOpm2RgbaIr1VxqYuvXtdj182d6UajtL
+F8HVj71lODqV0D1VNk7feVcxKh7YWWVJWCCYfqtffp/p1k3sg3Spx2zY7ilKhSoGFPlU5tPaZQeL
+YzcS19Dsw3sgQUSj7cugF+FxZc4dZjH3dgEZyH0DWLaVSR2mEiboxgx24ONmy+pdpibu5cxfvWen
+AScOospUxbF6lR1xHkopigPcakXBpBlebzbNw6Kwt/5cOOJSvPhEQ+aQuwIDAQABo4ICUjCCAk4w
+PQYIKwYBBQUHAQEEMTAvMC0GCCsGAQUFBzABhiFodHRwczovL29jc3AucXVvdmFkaXNvZmZzaG9y
+ZS5jb20wDwYDVR0TAQH/BAUwAwEB/zCCARoGA1UdIASCAREwggENMIIBCQYJKwYBBAG+WAABMIH7
+MIHUBggrBgEFBQcCAjCBxxqBxFJlbGlhbmNlIG9uIHRoZSBRdW9WYWRpcyBSb290IENlcnRpZmlj
+YXRlIGJ5IGFueSBwYXJ0eSBhc3N1bWVzIGFjY2VwdGFuY2Ugb2YgdGhlIHRoZW4gYXBwbGljYWJs
+ZSBzdGFuZGFyZCB0ZXJtcyBhbmQgY29uZGl0aW9ucyBvZiB1c2UsIGNlcnRpZmljYXRpb24gcHJh
+Y3RpY2VzLCBhbmQgdGhlIFF1b1ZhZGlzIENlcnRpZmljYXRlIFBvbGljeS4wIgYIKwYBBQUHAgEW
+Fmh0dHA6Ly93d3cucXVvdmFkaXMuYm0wHQYDVR0OBBYEFItLbe3TKbkGGew5Oanwl4Rqy+/fMIGu
+BgNVHSMEgaYwgaOAFItLbe3TKbkGGew5Oanwl4Rqy+/foYGEpIGBMH8xCzAJBgNVBAYTAkJNMRkw
+FwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0
+aG9yaXR5MS4wLAYDVQQDEyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggQ6
+tlCLMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAitQUtf70mpKnGdSkfnIYj9lo
+fFIk3WdvOXrEql494liwTXCYhGHoG+NpGA7O+0dQoE7/8CQfvbLO9Sf87C9TqnN7Az10buYWnuul
+LsS/VidQK2K6vkscPFVcQR0kvoIgR13VRH56FmjffU1RcHhXHTMe/QKZnAzNCgVPx7uOpHX6Sm2x
+gI4JVrmcGmD+XcHXetwReNDWXcG31a0ymQM6isxUJTkxgXsTIlG6Rmyhu576BGxJJnSP0nPrzDCi
+5upZIof4l/UO/erMkqQWxFIY6iHOsfHmhIHluqmGKPJDWl0Snawe2ajlCmqnf6CHKc/yiU3U7MXi
+5nrQNiOKSnQ2+Q==
+-----END CERTIFICATE-----
+
+QuoVadis Root CA 2
+==================
+-----BEGIN CERTIFICATE-----
+MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoT
+EFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJvb3QgQ0EgMjAeFw0wNjExMjQx
+ODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM
+aW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4IC
+DwAwggIKAoICAQCaGMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6
+XJxgFyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55JWpzmM+Yk
+lvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bBrrcCaoF6qUWD4gXmuVbB
+lDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp+ARz8un+XJiM9XOva7R+zdRcAitMOeGy
+lZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt
+66/3FsvbzSUr5R/7mp/iUcw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1Jdxn
+wQ5hYIizPtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og/zOh
+D7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UHoycR7hYQe7xFSkyy
+BNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuIyV77zGHcizN300QyNQliBJIWENie
+J0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1Ud
+DgQWBBQahGK8SEwzJQTU7tD2A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGU
+a6FJpEcwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT
+ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2fBluornFdLwUv
+Z+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzng/iN/Ae42l9NLmeyhP3ZRPx3
+UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2BlfF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodm
+VjB3pjd4M1IQWK4/YY7yarHvGH5KWWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK
++JDSV6IZUaUtl0HaB0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrW
+IozchLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPRTUIZ3Ph1
+WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWDmbA4CD/pXvk1B+TJYm5X
+f6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0ZohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II
+4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8
+VCLAAVBpQ570su9t+Oza8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u
+-----END CERTIFICATE-----
+
+QuoVadis Root CA 3
+==================
+-----BEGIN CERTIFICATE-----
+MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoT
+EFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJvb3QgQ0EgMzAeFw0wNjExMjQx
+OTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM
+aW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4IC
+DwAwggIKAoICAQDMV0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNgg
+DhoB4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUrH556VOij
+KTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd8lyyBTNvijbO0BNO/79K
+DDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9CabwvvWhDFlaJKjdhkf2mrk7AyxRllDdLkgbv
+BNDInIjbC3uBr7E9KsRlOni27tyAsdLTmZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwp
+p5ijJUMv7/FfJuGITfhebtfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8
+nT8KKdjcT5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDtWAEX
+MJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZc6tsgLjoC2SToJyM
+Gf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A4iLItLRkT9a6fUg+qGkM17uGcclz
+uD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYDVR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHT
+BgkrBgEEAb5YAAMwgcUwgZMGCCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmlj
+YXRlIGNvbnN0aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0
+aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVudC4wLQYIKwYB
+BQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2NwczALBgNVHQ8EBAMCAQYwHQYD
+VR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4GA1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4
+ywLQoUmkRzBFMQswCQYDVQQGEwJCTTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UE
+AxMSUXVvVmFkaXMgUm9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZV
+qyM07ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSemd1o417+s
+hvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd+LJ2w/w4E6oM3kJpK27z
+POuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2
+Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadNt54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp
+8kokUvd0/bpO5qgdAm6xDYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBC
+bjPsMZ57k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6szHXu
+g/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0jWy10QJLZYxkNc91p
+vGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeTmJlglFwjz1onl14LBQaTNx47aTbr
+qZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK4SVhM7JZG+Ju1zdXtg2pEto=
+-----END CERTIFICATE-----
+
+Security Communication Root CA
+==============================
+-----BEGIN CERTIFICATE-----
+MIIDWjCCAkKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMP
+U0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEw
+HhcNMDMwOTMwMDQyMDQ5WhcNMjMwOTMwMDQyMDQ5WjBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMP
+U0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEw
+ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCzs/5/022x7xZ8V6UMbXaKL0u/ZPtM7orw
+8yl89f/uKuDp6bpbZCKamm8sOiZpUQWZJtzVHGpxxpp9Hp3dfGzGjGdnSj74cbAZJ6kJDKaVv0uM
+DPpVmDvY6CKhS3E4eayXkmmziX7qIWgGmBSWh9JhNrxtJ1aeV+7AwFb9Ms+k2Y7CI9eNqPPYJayX
+5HA49LY6tJ07lyZDo6G8SVlyTCMwhwFY9k6+HGhWZq/NQV3Is00qVUarH9oe4kA92819uZKAnDfd
+DJZkndwi92SL32HeFZRSFaB9UslLqCHJxrHty8OVYNEP8Ktw+N/LTX7s1vqr2b1/VPKl6Xn62dZ2
+JChzAgMBAAGjPzA9MB0GA1UdDgQWBBSgc0mZaNyFW2XjmygvV5+9M7wHSDALBgNVHQ8EBAMCAQYw
+DwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaECpqLvkT115swW1F7NgE+vGkl3g
+0dNq/vu+m22/xwVtWSDEHPC32oRYAmP6SBbvT6UL90qY8j+eG61Ha2POCEfrUj94nK9NrvjVT8+a
+mCoQQTlSxN3Zmw7vkwGusi7KaEIkQmywszo+zenaSMQVy+n5Bw+SUEmK3TGXX8npN6o7WWWXlDLJ
+s58+OmJYxUmtYg5xpTKqL8aJdkNAExNnPaJUJRDL8Try2frbSVa7pv6nQTXD4IhhyYjH3zYQIphZ
+6rBK+1YWc26sTfcioU+tHXotRSflMMFe8toTyyVCUZVHA4xsIcx0Qu1T/zOLjw9XARYvz6buyXAi
+FL39vmwLAw==
+-----END CERTIFICATE-----
+
+Sonera Class 2 Root CA
+======================
+-----BEGIN CERTIFICATE-----
+MIIDIDCCAgigAwIBAgIBHTANBgkqhkiG9w0BAQUFADA5MQswCQYDVQQGEwJGSTEPMA0GA1UEChMG
+U29uZXJhMRkwFwYDVQQDExBTb25lcmEgQ2xhc3MyIENBMB4XDTAxMDQwNjA3Mjk0MFoXDTIxMDQw
+NjA3Mjk0MFowOTELMAkGA1UEBhMCRkkxDzANBgNVBAoTBlNvbmVyYTEZMBcGA1UEAxMQU29uZXJh
+IENsYXNzMiBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJAXSjWdyvANlsdE+hY3
+/Ei9vX+ALTU74W+oZ6m/AxxNjG8yR9VBaKQTBME1DJqEQ/xcHf+Js+gXGM2RX/uJ4+q/Tl18GybT
+dXnt5oTjV+WtKcT0OijnpXuENmmz/V52vaMtmdOQTiMofRhj8VQ7Jp12W5dCsv+u8E7s3TmVToMG
+f+dJQMjFAbJUWmYdPfz56TwKnoG4cPABi+QjVHzIrviQHgCWctRUz2EjvOr7nQKV0ba5cTppCD8P
+tOFCx4j1P5iop7oc4HFx71hXgVB6XGt0Rg6DA5jDjqhu8nYybieDwnPz3BjotJPqdURrBGAgcVeH
+nfO+oJAjPYok4doh28MCAwEAAaMzMDEwDwYDVR0TAQH/BAUwAwEB/zARBgNVHQ4ECgQISqCqWITT
+XjwwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBQUAA4IBAQBazof5FnIVV0sd2ZvnoiYw7JNn39Yt
+0jSv9zilzqsWuasvfDXLrNAPtEwr/IDva4yRXzZ299uzGxnq9LIR/WFxRL8oszodv7ND6J+/3DEI
+cbCdjdY0RzKQxmUk96BKfARzjzlvF4xytb1LyHr4e4PDKE6cCepnP7JnBBvDFNr450kkkdAdavph
+Oe9r5yF1BgfYErQhIHBCcYHaPJo2vqZbDWpsmh+Re/n570K6Tk6ezAyNlNzZRZxe7EJQY670XcSx
+EtzKO6gunRRaBXW37Ndj4ro1tgQIkejanZz2ZrUYrAqmVCY0M9IbwdR/GjqOC6oybtv8TyWf2TLH
+llpwrN9M
+-----END CERTIFICATE-----
+
+XRamp Global CA Root
+====================
+-----BEGIN CERTIFICATE-----
+MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCBgjELMAkGA1UE
+BhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2Vj
+dXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB
+dXRob3JpdHkwHhcNMDQxMTAxMTcxNDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMx
+HjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkg
+U2VydmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3Jp
+dHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS638eMpSe2OAtp87ZOqCwu
+IR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCPKZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMx
+foArtYzAQDsRhtDLooY2YKTVMIJt2W7QDxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FE
+zG+gSqmUsE3a56k0enI4qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqs
+AxcZZPRaJSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNViPvry
+xS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud
+EwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASsjVy16bYbMDYGA1UdHwQvMC0wK6Ap
+oCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMC
+AQEwDQYJKoZIhvcNAQEFBQADggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc
+/Kh4ZzXxHfARvbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt
+qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLaIR9NmXmd4c8n
+nxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSyi6mx5O+aGtA9aZnuqCij4Tyz
+8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQO+7ETPTsJ3xCwnR8gooJybQDJbw=
+-----END CERTIFICATE-----
+
+Go Daddy Class 2 CA
+===================
+-----BEGIN CERTIFICATE-----
+MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMY
+VGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRp
+ZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkG
+A1UEBhMCVVMxITAfBgNVBAoTGFRoZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28g
+RGFkZHkgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQAD
+ggENADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCAPVYYYwhv
+2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6wwdhFJ2+qN1j3hybX2C32
+qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXiEqITLdiOr18SPaAIBQi2XKVlOARFmR6j
+YGB0xUGlcmIbYsUfb18aQr4CUWWoriMYavx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmY
+vLEHZ6IVDd2gWMZEewo+YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0O
+BBYEFNLEsNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h/t2o
+atTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMu
+MTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwG
+A1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wim
+PQoZ+YeAEW5p5JYXMP80kWNyOO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKt
+I3lpjbi2Tc7PTMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ
+HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mERdEr/VxqHD3VI
+Ls9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5CufReYNnyicsbkqWletNw+vHX/b
+vZ8=
+-----END CERTIFICATE-----
+
+Starfield Class 2 CA
+====================
+-----BEGIN CERTIFICATE-----
+MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzElMCMGA1UEChMc
+U3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZpZWxkIENsYXNzIDIg
+Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQwNjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBo
+MQswCQYDVQQGEwJVUzElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAG
+A1UECxMpU3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqG
+SIb3DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf8MOh2tTY
+bitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN+lq2cwQlZut3f+dZxkqZ
+JRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVm
+epsZGD3/cVE8MC5fvj13c7JdBmzDI1aaK4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSN
+F4Azbl5KXZnJHoe0nRrA1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HF
+MIHCMB0GA1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fRzt0f
+hvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNo
+bm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBDbGFzcyAyIENlcnRpZmljYXRpb24g
+QXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGs
+afPzWdqbAYcaT1epoXkJKtv3L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLM
+PUxA2IGvd56Deruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl
+xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynpVSJYACPq4xJD
+KVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEYWQPJIrSPnNVeKtelttQKbfi3
+QBFGmh95DmK/D5fs4C8fF5Q=
+-----END CERTIFICATE-----
+
+Taiwan GRCA
+===========
+-----BEGIN CERTIFICATE-----
+MIIFcjCCA1qgAwIBAgIQH51ZWtcvwgZEpYAIaeNe9jANBgkqhkiG9w0BAQUFADA/MQswCQYDVQQG
+EwJUVzEwMC4GA1UECgwnR292ZXJubWVudCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4X
+DTAyMTIwNTEzMjMzM1oXDTMyMTIwNTEzMjMzM1owPzELMAkGA1UEBhMCVFcxMDAuBgNVBAoMJ0dv
+dmVybm1lbnQgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQAD
+ggIPADCCAgoCggIBAJoluOzMonWoe/fOW1mKydGGEghU7Jzy50b2iPN86aXfTEc2pBsBHH8eV4qN
+w8XRIePaJD9IK/ufLqGU5ywck9G/GwGHU5nOp/UKIXZ3/6m3xnOUT0b3EEk3+qhZSV1qgQdW8or5
+BtD3cCJNtLdBuTK4sfCxw5w/cP1T3YGq2GN49thTbqGsaoQkclSGxtKyyhwOeYHWtXBiCAEuTk8O
+1RGvqa/lmr/czIdtJuTJV6L7lvnM4T9TjGxMfptTCAtsF/tnyMKtsc2AtJfcdgEWFelq16TheEfO
+htX7MfP6Mb40qij7cEwdScevLJ1tZqa2jWR+tSBqnTuBto9AAGdLiYa4zGX+FVPpBMHWXx1E1wov
+J5pGfaENda1UhhXcSTvxls4Pm6Dso3pdvtUqdULle96ltqqvKKyskKw4t9VoNSZ63Pc78/1Fm9G7
+Q3hub/FCVGqY8A2tl+lSXunVanLeavcbYBT0peS2cWeqH+riTcFCQP5nRhc4L0c/cZyu5SHKYS1t
+B6iEfC3uUSXxY5Ce/eFXiGvviiNtsea9P63RPZYLhY3Naye7twWb7LuRqQoHEgKXTiCQ8P8NHuJB
+O9NAOueNXdpm5AKwB1KYXA6OM5zCppX7VRluTI6uSw+9wThNXo+EHWbNxWCWtFJaBYmOlXqYwZE8
+lSOyDvR5tMl8wUohAgMBAAGjajBoMB0GA1UdDgQWBBTMzO/MKWCkO7GStjz6MmKPrCUVOzAMBgNV
+HRMEBTADAQH/MDkGBGcqBwAEMTAvMC0CAQAwCQYFKw4DAhoFADAHBgVnKgMAAAQUA5vwIhP/lSg2
+09yewDL7MTqKUWUwDQYJKoZIhvcNAQEFBQADggIBAECASvomyc5eMN1PhnR2WPWus4MzeKR6dBcZ
+TulStbngCnRiqmjKeKBMmo4sIy7VahIkv9Ro04rQ2JyftB8M3jh+Vzj8jeJPXgyfqzvS/3WXy6Tj
+Zwj/5cAWtUgBfen5Cv8b5Wppv3ghqMKnI6mGq3ZW6A4M9hPdKmaKZEk9GhiHkASfQlK3T8v+R0F2
+Ne//AHY2RTKbxkaFXeIksB7jSJaYV0eUVXoPQbFEJPPB/hprv4j9wabak2BegUqZIJxIZhm1AHlU
+D7gsL0u8qV1bYH+Mh6XgUmMqvtg7hUAV/h62ZT/FS9p+tXo1KaMuephgIqP0fSdOLeq0dDzpD6Qz
+DxARvBMB1uUO07+1EqLhRSPAzAhuYbeJq4PjJB7mXQfnHyA+z2fI56wwbSdLaG5LKlwCCDTb+Hbk
+Z6MmnD+iMsJKxYEYMRBWqoTvLQr/uB930r+lWKBi5NdLkXWNiYCYfm3LU05er/ayl4WXudpVBrkk
+7tfGOB5jGxI7leFYrPLfhNVfmS8NVVvmONsuP3LpSIXLuykTjx44VbnzssQwmSNOXfJIoRIM3BKQ
+CZBUkQM8R+XVyWXgt0t97EfTsws+rZ7QdAAO671RrcDeLMDDav7v3Aun+kbfYNucpllQdSNpc5Oy
++fwC00fmcc4QAu4njIT/rEUNE1yDMuAlpYYsfPQS
+-----END CERTIFICATE-----
+
+DigiCert Assured ID Root CA
+===========================
+-----BEGIN CERTIFICATE-----
+MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBlMQswCQYDVQQG
+EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQw
+IgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzEx
+MTEwMDAwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQL
+ExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0Ew
+ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7cJpSIqvTO
+9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYPmDI2dsze3Tyoou9q+yHy
+UmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW
+/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpy
+oeb6pNnVFzF1roV9Iq4/AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whf
+GHdPAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRF
+66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYunpyGd823IDzANBgkq
+hkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRCdWKuh+vy1dneVrOfzM4UKLkNl2Bc
+EkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTffwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38Fn
+SbNd67IJKusm7Xi+fT8r87cmNW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i
+8b5QZ7dsvfPxH2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe
++o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g==
+-----END CERTIFICATE-----
+
+DigiCert Global Root CA
+=======================
+-----BEGIN CERTIFICATE-----
+MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG
+EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw
+HgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw
+MDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3
+dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq
+hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn
+TjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5
+BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H
+4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y
+7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB
+o2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm
+8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF
+BQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr
+EbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt
+tep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886
+UAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk
+CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=
+-----END CERTIFICATE-----
+
+DigiCert High Assurance EV Root CA
+==================================
+-----BEGIN CERTIFICATE-----
+MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBsMQswCQYDVQQG
+EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSsw
+KQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAw
+MFoXDTMxMTExMDAwMDAwMFowbDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZ
+MBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFu
+Y2UgRVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm+9S75S0t
+Mqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTWPNt0OKRKzE0lgvdKpVMS
+OO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEMxChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3
+MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFBIk5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQ
+NAQTXKFx01p8VdteZOE3hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUe
+h10aUAsgEsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMB
+Af8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaAFLE+w2kD+L9HAdSY
+JhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3NecnzyIZgYIVyHbIUf4KmeqvxgydkAQ
+V8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6zeM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFp
+myPInngiK3BD41VHMWEZ71jFhS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkK
+mNEVX58Svnw2Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe
+vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep+OkuE6N36B9K
+-----END CERTIFICATE-----
+
+Certplus Class 2 Primary CA
+===========================
+-----BEGIN CERTIFICATE-----
+MIIDkjCCAnqgAwIBAgIRAIW9S/PY2uNp9pTXX8OlRCMwDQYJKoZIhvcNAQEFBQAwPTELMAkGA1UE
+BhMCRlIxETAPBgNVBAoTCENlcnRwbHVzMRswGQYDVQQDExJDbGFzcyAyIFByaW1hcnkgQ0EwHhcN
+OTkwNzA3MTcwNTAwWhcNMTkwNzA2MjM1OTU5WjA9MQswCQYDVQQGEwJGUjERMA8GA1UEChMIQ2Vy
+dHBsdXMxGzAZBgNVBAMTEkNsYXNzIDIgUHJpbWFyeSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEP
+ADCCAQoCggEBANxQltAS+DXSCHh6tlJw/W/uz7kRy1134ezpfgSN1sxvc0NXYKwzCkTsA18cgCSR
+5aiRVhKC9+Ar9NuuYS6JEI1rbLqzAr3VNsVINyPi8Fo3UjMXEuLRYE2+L0ER4/YXJQyLkcAbmXuZ
+Vg2v7tK8R1fjeUl7NIknJITesezpWE7+Tt9avkGtrAjFGA7v0lPubNCdEgETjdyAYveVqUSISnFO
+YFWe2yMZeVYHDD9jC1yw4r5+FfyUM1hBOHTE4Y+L3yasH7WLO7dDWWuwJKZtkIvEcupdM5i3y95e
+e++U8Rs+yskhwcWYAqqi9lt3m/V+llU0HGdpwPFC40es/CgcZlUCAwEAAaOBjDCBiTAPBgNVHRME
+CDAGAQH/AgEKMAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQU43Mt38sOKAze3bOkynm4jrvoMIkwEQYJ
+YIZIAYb4QgEBBAQDAgEGMDcGA1UdHwQwMC4wLKAqoCiGJmh0dHA6Ly93d3cuY2VydHBsdXMuY29t
+L0NSTC9jbGFzczIuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQCnVM+IRBnL39R/AN9WM2K191EBkOvD
+P9GIROkkXe/nFL0gt5o8AP5tn9uQ3Nf0YtaLcF3n5QRIqWh8yfFC82x/xXp8HVGIutIKPidd3i1R
+TtMTZGnkLuPT55sJmabglZvOGtd/vjzOUrMRFcEPF80Du5wlFbqidon8BvEY0JNLDnyCt6X09l/+
+7UCmnYR0ObncHoUW2ikbhiMAybuJfm6AiB4vFLQDJKgybwOaRywwvlbGp0ICcBvqQNi6BQNwB6SW
+//1IMwrh3KWBkJtN3X3n57LNXMhqlfil9o3EXXgIvnsG1knPGTZQIy4I5p4FTUcY1Rbpsda2ENW7
+l7+ijrRU
+-----END CERTIFICATE-----
+
+DST Root CA X3
+==============
+-----BEGIN CERTIFICATE-----
+MIIDSjCCAjKgAwIBAgIQRK+wgNajJ7qJMDmGLvhAazANBgkqhkiG9w0BAQUFADA/MSQwIgYDVQQK
+ExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMTDkRTVCBSb290IENBIFgzMB4X
+DTAwMDkzMDIxMTIxOVoXDTIxMDkzMDE0MDExNVowPzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1
+cmUgVHJ1c3QgQ28uMRcwFQYDVQQDEw5EU1QgUm9vdCBDQSBYMzCCASIwDQYJKoZIhvcNAQEBBQAD
+ggEPADCCAQoCggEBAN+v6ZdQCINXtMxiZfaQguzH0yxrMMpb7NnDfcdAwRgUi+DoM3ZJKuM/IUmT
+rE4Orz5Iy2Xu/NMhD2XSKtkyj4zl93ewEnu1lcCJo6m67XMuegwGMoOifooUMM0RoOEqOLl5CjH9
+UL2AZd+3UWODyOKIYepLYYHsUmu5ouJLGiifSKOeDNoJjj4XLh7dIN9bxiqKqy69cK3FCxolkHRy
+xXtqqzTWMIn/5WgTe1QLyNau7Fqckh49ZLOMxt+/yUFw7BZy1SbsOFU5Q9D8/RhcQPGX69Wam40d
+utolucbY38EVAjqr2m7xPi71XAicPNaDaeQQmxkqtilX4+U9m5/wAl0CAwEAAaNCMEAwDwYDVR0T
+AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMSnsaR7LHH62+FLkHX/xBVghYkQ
+MA0GCSqGSIb3DQEBBQUAA4IBAQCjGiybFwBcqR7uKGY3Or+Dxz9LwwmglSBd49lZRNI+DT69ikug
+dB/OEIKcdBodfpga3csTS7MgROSR6cz8faXbauX+5v3gTt23ADq1cEmv8uXrAvHRAosZy5Q6XkjE
+GB5YGV8eAlrwDPGxrancWYaLbumR9YbK+rlmM6pZW87ipxZzR8srzJmwN0jP41ZL9c8PDHIyh8bw
+RLtTcm1D9SZImlJnt1ir/md2cXjbDaJWFBM5JDGFoqgCWjBH4d1QB7wCCZAA62RjYJsWvIjJEubS
+fZGL+T0yjWW06XyxV3bqxbYoOb8VZRzI9neWagqNdwvYkQsEjgfbKbYK7p2CNTUQ
+-----END CERTIFICATE-----
+
+SwissSign Gold CA - G2
+======================
+-----BEGIN CERTIFICATE-----
+MIIFujCCA6KgAwIBAgIJALtAHEP1Xk+wMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkNIMRUw
+EwYDVQQKEwxTd2lzc1NpZ24gQUcxHzAdBgNVBAMTFlN3aXNzU2lnbiBHb2xkIENBIC0gRzIwHhcN
+MDYxMDI1MDgzMDM1WhcNMzYxMDI1MDgzMDM1WjBFMQswCQYDVQQGEwJDSDEVMBMGA1UEChMMU3dp
+c3NTaWduIEFHMR8wHQYDVQQDExZTd2lzc1NpZ24gR29sZCBDQSAtIEcyMIICIjANBgkqhkiG9w0B
+AQEFAAOCAg8AMIICCgKCAgEAr+TufoskDhJuqVAtFkQ7kpJcyrhdhJJCEyq8ZVeCQD5XJM1QiyUq
+t2/876LQwB8CJEoTlo8jE+YoWACjR8cGp4QjK7u9lit/VcyLwVcfDmJlD909Vopz2q5+bbqBHH5C
+jCA12UNNhPqE21Is8w4ndwtrvxEvcnifLtg+5hg3Wipy+dpikJKVyh+c6bM8K8vzARO/Ws/BtQpg
+vd21mWRTuKCWs2/iJneRjOBiEAKfNA+k1ZIzUd6+jbqEemA8atufK+ze3gE/bk3lUIbLtK/tREDF
+ylqM2tIrfKjuvqblCqoOpd8FUrdVxyJdMmqXl2MT28nbeTZ7hTpKxVKJ+STnnXepgv9VHKVxaSvR
+AiTysybUa9oEVeXBCsdtMDeQKuSeFDNeFhdVxVu1yzSJkvGdJo+hB9TGsnhQ2wwMC3wLjEHXuend
+jIj3o02yMszYF9rNt85mndT9Xv+9lz4pded+p2JYryU0pUHHPbwNUMoDAw8IWh+Vc3hiv69yFGkO
+peUDDniOJihC8AcLYiAQZzlG+qkDzAQ4embvIIO1jEpWjpEA/I5cgt6IoMPiaG59je883WX0XaxR
+7ySArqpWl2/5rX3aYT+YdzylkbYcjCbaZaIJbcHiVOO5ykxMgI93e2CaHt+28kgeDrpOVG2Y4OGi
+GqJ3UM/EY5LsRxmd6+ZrzsECAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUw
+AwEB/zAdBgNVHQ4EFgQUWyV7lqRlUX64OfPAeGZe6Drn8O4wHwYDVR0jBBgwFoAUWyV7lqRlUX64
+OfPAeGZe6Drn8O4wRgYDVR0gBD8wPTA7BglghXQBWQECAQEwLjAsBggrBgEFBQcCARYgaHR0cDov
+L3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBACe645R88a7A3hfm
+5djV9VSwg/S7zV4Fe0+fdWavPOhWfvxyeDgD2StiGwC5+OlgzczOUYrHUDFu4Up+GC9pWbY9ZIEr
+44OE5iKHjn3g7gKZYbge9LgriBIWhMIxkziWMaa5O1M/wySTVltpkuzFwbs4AOPsF6m43Md8AYOf
+Mke6UiI0HTJ6CVanfCU2qT1L2sCCbwq7EsiHSycR+R4tx5M/nttfJmtS2S6K8RTGRI0Vqbe/vd6m
+Gu6uLftIdxf+u+yvGPUqUfA5hJeVbG4bwyvEdGB5JbAKJ9/fXtI5z0V9QkvfsywexcZdylU6oJxp
+mo/a77KwPJ+HbBIrZXAVUjEaJM9vMSNQH4xPjyPDdEFjHFWoFN0+4FFQz/EbMFYOkrCChdiDyyJk
+vC24JdVUorgG6q2SpCSgwYa1ShNqR88uC1aVVMvOmttqtKay20EIhid392qgQmwLOM7XdVAyksLf
+KzAiSNDVQTglXaTpXZ/GlHXQRf0wl0OPkKsKx4ZzYEppLd6leNcG2mqeSz53OiATIgHQv2ieY2Br
+NU0LbbqhPcCT4H8js1WtciVORvnSFu+wZMEBnunKoGqYDs/YYPIvSbjkQuE4NRb0yG5P94FW6Lqj
+viOvrv1vA+ACOzB2+httQc8Bsem4yWb02ybzOqR08kkkW8mw0FfB+j564ZfJ
+-----END CERTIFICATE-----
+
+SwissSign Silver CA - G2
+========================
+-----BEGIN CERTIFICATE-----
+MIIFvTCCA6WgAwIBAgIITxvUL1S7L0swDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCQ0gxFTAT
+BgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMB4X
+DTA2MTAyNTA4MzI0NloXDTM2MTAyNTA4MzI0NlowRzELMAkGA1UEBhMCQ0gxFTATBgNVBAoTDFN3
+aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMIICIjANBgkqhkiG
+9w0BAQEFAAOCAg8AMIICCgKCAgEAxPGHf9N4Mfc4yfjDmUO8x/e8N+dOcbpLj6VzHVxumK4DV644
+N0MvFz0fyM5oEMF4rhkDKxD6LHmD9ui5aLlV8gREpzn5/ASLHvGiTSf5YXu6t+WiE7brYT7QbNHm
++/pe7R20nqA1W6GSy/BJkv6FCgU+5tkL4k+73JU3/JHpMjUi0R86TieFnbAVlDLaYQ1HTWBCrpJH
+6INaUFjpiou5XaHc3ZlKHzZnu0jkg7Y360g6rw9njxcH6ATK72oxh9TAtvmUcXtnZLi2kUpCe2Uu
+MGoM9ZDulebyzYLs2aFK7PayS+VFheZteJMELpyCbTapxDFkH4aDCyr0NQp4yVXPQbBH6TCfmb5h
+qAaEuSh6XzjZG6k4sIN/c8HDO0gqgg8hm7jMqDXDhBuDsz6+pJVpATqJAHgE2cn0mRmrVn5bi4Y5
+FZGkECwJMoBgs5PAKrYYC51+jUnyEEp/+dVGLxmSo5mnJqy7jDzmDrxHB9xzUfFwZC8I+bRHHTBs
+ROopN4WSaGa8gzj+ezku01DwH/teYLappvonQfGbGHLy9YR0SslnxFSuSGTfjNFusB3hB48IHpmc
+celM2KX3RxIfdNFRnobzwqIjQAtz20um53MGjMGg6cFZrEb65i/4z3GcRm25xBWNOHkDRUjvxF3X
+CO6HOSKGsg0PWEP3calILv3q1h8CAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/
+BAUwAwEB/zAdBgNVHQ4EFgQUF6DNweRBtjpbO8tFnb0cwpj6hlgwHwYDVR0jBBgwFoAUF6DNweRB
+tjpbO8tFnb0cwpj6hlgwRgYDVR0gBD8wPTA7BglghXQBWQEDAQEwLjAsBggrBgEFBQcCARYgaHR0
+cDovL3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBAHPGgeAn0i0P
+4JUw4ppBf1AsX19iYamGamkYDHRJ1l2E6kFSGG9YrVBWIGrGvShpWJHckRE1qTodvBqlYJ7YH39F
+kWnZfrt4csEGDyrOj4VwYaygzQu4OSlWhDJOhrs9xCrZ1x9y7v5RoSJBsXECYxqCsGKrXlcSH9/L
+3XWgwF15kIwb4FDm3jH+mHtwX6WQ2K34ArZv02DdQEsixT2tOnqfGhpHkXkzuoLcMmkDlm4fS/Bx
+/uNncqCxv1yL5PqZIseEuRuNI5c/7SXgz2W79WEE790eslpBIlqhn10s6FvJbakMDHiqYMZWjwFa
+DGi8aRl5xB9+lwW/xekkUV7U1UtT7dkjWjYDZaPBA61BMPNGG4WQr2W11bHkFlt4dR2Xem1ZqSqP
+e97Dh4kQmUlzeMg9vVE1dCrV8X5pGyq7O70luJpaPXJhkGaH7gzWTdQRdAtq/gsD/KNVV4n+Ssuu
+WxcFyPKNIzFTONItaj+CuY0IavdeQXRuwxF+B6wpYJE/OMpXEA29MC/HpeZBoNquBYeaoKRlbEwJ
+DIm6uNO5wJOKMPqN5ZprFQFOZ6raYlY+hAhm0sQ2fac+EPyI4NSA5QC9qvNOBqN6avlicuMJT+ub
+DgEj8Z+7fNzcbBGXJbLytGMU0gYqZ4yD9c7qB9iaah7s5Aq7KkzrCWA5zspi2C5u
+-----END CERTIFICATE-----
+
+GeoTrust Primary Certification Authority
+========================================
+-----BEGIN CERTIFICATE-----
+MIIDfDCCAmSgAwIBAgIQGKy1av1pthU6Y2yv2vrEoTANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQG
+EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjExMC8GA1UEAxMoR2VvVHJ1c3QgUHJpbWFyeSBD
+ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjExMjcwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMFgx
+CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTEwLwYDVQQDEyhHZW9UcnVzdCBQ
+cmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB
+CgKCAQEAvrgVe//UfH1nrYNke8hCUy3f9oQIIGHWAVlqnEQRr+92/ZV+zmEwu3qDXwK9AWbK7hWN
+b6EwnL2hhZ6UOvNWiAAxz9juapYC2e0DjPt1befquFUWBRaa9OBesYjAZIVcFU2Ix7e64HXprQU9
+nceJSOC7KMgD4TCTZF5SwFlwIjVXiIrxlQqD17wxcwE07e9GceBrAqg1cmuXm2bgyxx5X9gaBGge
+RwLmnWDiNpcB3841kt++Z8dtd1k7j53WkBWUvEI0EME5+bEnPn7WinXFsq+W06Lem+SYvn3h6YGt
+tm/81w7a4DSwDRp35+MImO9Y+pyEtzavwt+s0vQQBnBxNQIDAQABo0IwQDAPBgNVHRMBAf8EBTAD
+AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQULNVQQZcVi/CPNmFbSvtr2ZnJM5IwDQYJKoZI
+hvcNAQEFBQADggEBAFpwfyzdtzRP9YZRqSa+S7iq8XEN3GHHoOo0Hnp3DwQ16CePbJC/kRYkRj5K
+Ts4rFtULUh38H2eiAkUxT87z+gOneZ1TatnaYzr4gNfTmeGl4b7UVXGYNTq+k+qurUKykG/g/CFN
+NWMziUnWm07Kx+dOCQD32sfvmWKZd7aVIl6KoKv0uHiYyjgZmclynnjNS6yvGaBzEi38wkG6gZHa
+Floxt/m0cYASSJlyc1pZU8FjUjPtp8nSOQJw+uCxQmYpqptR7TBUIhRf2asdweSU8Pj1K/fqynhG
+1riR/aYNKxoUAT6A8EKglQdebc3MS6RFjasS6LPeWuWgfOgPIh1a6Vk=
+-----END CERTIFICATE-----
+
+thawte Primary Root CA
+======================
+-----BEGIN CERTIFICATE-----
+MIIEIDCCAwigAwIBAgIQNE7VVyDV7exJ9C/ON9srbTANBgkqhkiG9w0BAQUFADCBqTELMAkGA1UE
+BhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2
+aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIwMDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhv
+cml6ZWQgdXNlIG9ubHkxHzAdBgNVBAMTFnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwHhcNMDYxMTE3
+MDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCBqTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwg
+SW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMv
+KGMpIDIwMDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxHzAdBgNVBAMT
+FnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCs
+oPD7gFnUnMekz52hWXMJEEUMDSxuaPFsW0hoSVk3/AszGcJ3f8wQLZU0HObrTQmnHNK4yZc2AreJ
+1CRfBsDMRJSUjQJib+ta3RGNKJpchJAQeg29dGYvajig4tVUROsdB58Hum/u6f1OCyn1PoSgAfGc
+q/gcfomk6KHYcWUNo1F77rzSImANuVud37r8UVsLr5iy6S7pBOhih94ryNdOwUxkHt3Ph1i6Sk/K
+aAcdHJ1KxtUvkcx8cXIcxcBn6zL9yZJclNqFwJu/U30rCfSMnZEfl2pSy94JNqR32HuHUETVPm4p
+afs5SSYeCaWAe0At6+gnhcn+Yf1+5nyXHdWdAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYD
+VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBR7W0XPr87Lev0xkhpqtvNG61dIUDANBgkqhkiG9w0BAQUF
+AAOCAQEAeRHAS7ORtvzw6WfUDW5FvlXok9LOAz/t2iWwHVfLHjp2oEzsUHboZHIMpKnxuIvW1oeE
+uzLlQRHAd9mzYJ3rG9XRbkREqaYB7FViHXe4XI5ISXycO1cRrK1zN44veFyQaEfZYGDm/Ac9IiAX
+xPcW6cTYcvnIc3zfFi8VqT79aie2oetaupgf1eNNZAqdE8hhuvU5HIe6uL17In/2/qxAeeWsEG89
+jxt5dovEN7MhGITlNgDrYyCZuen+MwS7QcjBAvlEYyCegc5C09Y/LHbTY5xZ3Y+m4Q6gLkH3LpVH
+z7z9M/P2C2F+fpErgUfCJzDupxBdN49cOSvkBPB7jVaMaA==
+-----END CERTIFICATE-----
+
+VeriSign Class 3 Public Primary Certification Authority - G5
+============================================================
+-----BEGIN CERTIFICATE-----
+MIIE0zCCA7ugAwIBAgIQGNrRniZ96LtKIVjNzGs7SjANBgkqhkiG9w0BAQUFADCByjELMAkGA1UE
+BhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBO
+ZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVk
+IHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRp
+ZmljYXRpb24gQXV0aG9yaXR5IC0gRzUwHhcNMDYxMTA4MDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCB
+yjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2ln
+biBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2lnbiwgSW5jLiAtIEZvciBh
+dXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmlt
+YXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw
+ggEKAoIBAQCvJAgIKXo1nmAMqudLO07cfLw8RRy7K+D+KQL5VwijZIUVJ/XxrcgxiV0i6CqqpkKz
+j/i5Vbext0uz/o9+B1fs70PbZmIVYc9gDaTY3vjgw2IIPVQT60nKWVSFJuUrjxuf6/WhkcIzSdhD
+Y2pSS9KP6HBRTdGJaXvHcPaz3BJ023tdS1bTlr8Vd6Gw9KIl8q8ckmcY5fQGBO+QueQA5N06tRn/
+Arr0PO7gi+s3i+z016zy9vA9r911kTMZHRxAy3QkGSGT2RT+rCpSx4/VBEnkjWNHiDxpg8v+R70r
+fk/Fla4OndTRQ8Bnc+MUCH7lP59zuDMKz10/NIeWiu5T6CUVAgMBAAGjgbIwga8wDwYDVR0TAQH/
+BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2Uv
+Z2lmMCEwHzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVy
+aXNpZ24uY29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFH/TZafC3ey78DAJ80M5+gKvMzEzMA0GCSqG
+SIb3DQEBBQUAA4IBAQCTJEowX2LP2BqYLz3q3JktvXf2pXkiOOzEp6B4Eq1iDkVwZMXnl2YtmAl+
+X6/WzChl8gGqCBpH3vn5fJJaCGkgDdk+bW48DW7Y5gaRQBi5+MHt39tBquCWIMnNZBU4gcmU7qKE
+KQsTb47bDN0lAtukixlE0kF6BWlKWE9gyn6CagsCqiUXObXbf+eEZSqVir2G3l6BFoMtEMze/aiC
+Km0oHw0LxOXnGiYZ4fQRbxC1lfznQgUy286dUV4otp6F01vvpX1FQHKOtw5rDgb7MzVIcbidJ4vE
+ZV8NhnacRHr2lVz2XTIIM6RUthg/aFzyQkqFOFSDX9HoLPKsEdao7WNq
+-----END CERTIFICATE-----
+
+SecureTrust CA
+==============
+-----BEGIN CERTIFICATE-----
+MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBIMQswCQYDVQQG
+EwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xFzAVBgNVBAMTDlNlY3VyZVRy
+dXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIzMTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAe
+BgNVBAoTF1NlY3VyZVRydXN0IENvcnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCC
+ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQX
+OZEzZum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO0gMdA+9t
+DWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIaowW8xQmxSPmjL8xk037uH
+GFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b
+01k/unK8RCSc43Oz969XL0Imnal0ugBS8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmH
+ursCAwEAAaOBnTCBmjATBgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/
+BAUwAwEB/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCegJYYj
+aHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQAwDQYJ
+KoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt36Z3q059c4EVlew3KW+JwULKUBRSu
+SceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHf
+mbx8IVQr5Fiiu1cprp6poxkmD5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZ
+nMUFdAvnZyPSCPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR
+3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE=
+-----END CERTIFICATE-----
+
+Secure Global CA
+================
+-----BEGIN CERTIFICATE-----
+MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBKMQswCQYDVQQG
+EwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBH
+bG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkxMjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEg
+MB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwg
+Q0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jx
+YDiJiQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa/FHtaMbQ
+bqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJjnIFHovdRIWCQtBJwB1g
+8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnIHmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYV
+HDGA76oYa8J719rO+TMg1fW9ajMtgQT7sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi
+0XPnj3pDAgMBAAGjgZ0wgZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud
+EwEB/wQFMAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCswKaAn
+oCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsGAQQBgjcVAQQDAgEA
+MA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0LURYD7xh8yOOvaliTFGCRsoTciE6+
+OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXOH0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cn
+CDpOGR86p1hcF895P4vkp9MmI50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/5
+3CYNv6ZHdAbYiNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc
+f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW
+-----END CERTIFICATE-----
+
+COMODO Certification Authority
+==============================
+-----BEGIN CERTIFICATE-----
+MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCBgTELMAkGA1UE
+BhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgG
+A1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNVBAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1
+dGhvcml0eTAeFw0wNjEyMDEwMDAwMDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEb
+MBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFD
+T01PRE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0aG9yaXR5
+MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3UcEbVASY06m/weaKXTuH
++7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI2GqGd0S7WWaXUF601CxwRM/aN5VCaTww
+xHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV
+4EajcNxo2f8ESIl33rXp+2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA
+1KGzqSX+DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5OnKVI
+rLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW/zAOBgNVHQ8BAf8E
+BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6gPKA6hjhodHRwOi8vY3JsLmNvbW9k
+b2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9uQXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOC
+AQEAPpiem/Yb6dc5t3iuHXIYSdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CP
+OGEIqB6BCsAvIC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/
+RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4zJVSk/BwJVmc
+IGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5ddBA6+C4OmF4O5MBKgxTMVBbkN
++8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IBZQ==
+-----END CERTIFICATE-----
+
+Network Solutions Certificate Authority
+=======================================
+-----BEGIN CERTIFICATE-----
+MIID5jCCAs6gAwIBAgIQV8szb8JcFuZHFhfjkDFo4DANBgkqhkiG9w0BAQUFADBiMQswCQYDVQQG
+EwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMTAwLgYDVQQDEydOZXR3b3Jr
+IFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDYxMjAxMDAwMDAwWhcNMjkxMjMx
+MjM1OTU5WjBiMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMu
+MTAwLgYDVQQDEydOZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0G
+CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDkvH6SMG3G2I4rC7xGzuAnlt7e+foS0zwzc7MEL7xx
+jOWftiJgPl9dzgn/ggwbmlFQGiaJ3dVhXRncEg8tCqJDXRfQNJIg6nPPOCwGJgl6cvf6UDL4wpPT
+aaIjzkGxzOTVHzbRijr4jGPiFFlp7Q3Tf2vouAPlT2rlmGNpSAW+Lv8ztumXWWn4Zxmuk2GWRBXT
+crA/vGp97Eh/jcOrqnErU2lBUzS1sLnFBgrEsEX1QV1uiUV7PTsmjHTC5dLRfbIR1PtYMiKagMnc
+/Qzpf14Dl847ABSHJ3A4qY5usyd2mFHgBeMhqxrVhSI8KbWaFsWAqPS7azCPL0YCorEMIuDTAgMB
+AAGjgZcwgZQwHQYDVR0OBBYEFCEwyfsA106Y2oeqKtCnLrFAMadMMA4GA1UdDwEB/wQEAwIBBjAP
+BgNVHRMBAf8EBTADAQH/MFIGA1UdHwRLMEkwR6BFoEOGQWh0dHA6Ly9jcmwubmV0c29sc3NsLmNv
+bS9OZXR3b3JrU29sdXRpb25zQ2VydGlmaWNhdGVBdXRob3JpdHkuY3JsMA0GCSqGSIb3DQEBBQUA
+A4IBAQC7rkvnt1frf6ott3NHhWrB5KUd5Oc86fRZZXe1eltajSU24HqXLjjAV2CDmAaDn7l2em5Q
+4LqILPxFzBiwmZVRDuwduIj/h1AcgsLj4DKAv6ALR8jDMe+ZZzKATxcheQxpXN5eNK4CtSbqUN9/
+GGUsyfJj4akH/nxxH2szJGoeBfcFaMBqEssuXmHLrijTfsK0ZpEmXzwuJF/LWA/rKOyvEZbz3Htv
+wKeI8lN3s2Berq4o2jUsbzRF0ybh3uxbTydrFny9RAQYgrOJeRcQcT16ohZO9QHNpGxlaKFJdlxD
+ydi8NmdspZS11My5vWo1ViHe2MPr+8ukYEywVaCge1ey
+-----END CERTIFICATE-----
+
+COMODO ECC Certification Authority
+==================================
+-----BEGIN CERTIFICATE-----
+MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTELMAkGA1UEBhMC
+R0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UE
+ChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBB
+dXRob3JpdHkwHhcNMDgwMzA2MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0Ix
+GzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR
+Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRo
+b3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSRFtSrYpn1PlILBs5BAH+X
+4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0JcfRK9ChQtP6IHG4/bC8vCVlbpVsLM5ni
+wz2J+Wos77LTBumjQjBAMB0GA1UdDgQWBBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8E
+BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VG
+FAkK+qDmfQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdvGDeA
+U/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY=
+-----END CERTIFICATE-----
+
+OISTE WISeKey Global Root GA CA
+===============================
+-----BEGIN CERTIFICATE-----
+MIID8TCCAtmgAwIBAgIQQT1yx/RrH4FDffHSKFTfmjANBgkqhkiG9w0BAQUFADCBijELMAkGA1UE
+BhMCQ0gxEDAOBgNVBAoTB1dJU2VLZXkxGzAZBgNVBAsTEkNvcHlyaWdodCAoYykgMjAwNTEiMCAG
+A1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBH
+bG9iYWwgUm9vdCBHQSBDQTAeFw0wNTEyMTExNjAzNDRaFw0zNzEyMTExNjA5NTFaMIGKMQswCQYD
+VQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEbMBkGA1UECxMSQ29weXJpZ2h0IChjKSAyMDA1MSIw
+IAYDVQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5
+IEdsb2JhbCBSb290IEdBIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAy0+zAJs9
+Nt350UlqaxBJH+zYK7LG+DKBKUOVTJoZIyEVRd7jyBxRVVuuk+g3/ytr6dTqvirdqFEr12bDYVxg
+Asj1znJ7O7jyTmUIms2kahnBAbtzptf2w93NvKSLtZlhuAGio9RN1AU9ka34tAhxZK9w8RxrfvbD
+d50kc3vkDIzh2TbhmYsFmQvtRTEJysIA2/dyoJaqlYfQjse2YXMNdmaM3Bu0Y6Kff5MTMPGhJ9vZ
+/yxViJGg4E8HsChWjBgbl0SOid3gF27nKu+POQoxhILYQBRJLnpB5Kf+42TMwVlxSywhp1t94B3R
+LoGbw9ho972WG6xwsRYUC9tguSYBBQIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw
+AwEB/zAdBgNVHQ4EFgQUswN+rja8sHnR3JQmthG+IbJphpQwEAYJKwYBBAGCNxUBBAMCAQAwDQYJ
+KoZIhvcNAQEFBQADggEBAEuh/wuHbrP5wUOxSPMowB0uyQlB+pQAHKSkq0lPjz0e701vvbyk9vIm
+MMkQyh2I+3QZH4VFvbBsUfk2ftv1TDI6QU9bR8/oCy22xBmddMVHxjtqD6wU2zz0c5ypBd8A3HR4
++vg1YFkCExh8vPtNsCBtQ7tgMHpnM1zFmdH4LTlSc/uMqpclXHLZCB6rTjzjgTGfA6b7wP4piFXa
+hNVQA7bihKOmNqoROgHhGEvWRGizPflTdISzRpFGlgC3gCy24eMQ4tui5yiPAZZiFj4A4xylNoEY
+okxSdsARo27mHbrjWr42U8U+dY+GaSlYU7Wcu2+fXMUY7N0v4ZjJ/L7fCg0=
+-----END CERTIFICATE-----
+
+Certigna
+========
+-----BEGIN CERTIFICATE-----
+MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNVBAYTAkZSMRIw
+EAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4XDTA3MDYyOTE1MTMwNVoXDTI3
+MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwI
+Q2VydGlnbmEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7q
+XOEm7RFHYeGifBZ4QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyH
+GxnygQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbwzBfsV1/p
+ogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q130yGLMLLGq/jj8UEYkg
+DncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKf
+Irjxwo1p3Po6WAbfAgMBAAGjgbwwgbkwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQ
+tCRZvgHyUtVF9lo53BEwZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJ
+BgNVBAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzjAQ/J
+SP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG9w0BAQUFAAOCAQEA
+hQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8hbV6lUmPOEvjvKtpv6zf+EwLHyzs+
+ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFncfca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1klu
+PBS1xp81HlDQwY9qcEQCYsuuHWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY
+1gkIl2PlwS6wt0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw
+WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg==
+-----END CERTIFICATE-----
+
+Deutsche Telekom Root CA 2
+==========================
+-----BEGIN CERTIFICATE-----
+MIIDnzCCAoegAwIBAgIBJjANBgkqhkiG9w0BAQUFADBxMQswCQYDVQQGEwJERTEcMBoGA1UEChMT
+RGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0GA1UECxMWVC1UZWxlU2VjIFRydXN0IENlbnRlcjEjMCEG
+A1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBSb290IENBIDIwHhcNOTkwNzA5MTIxMTAwWhcNMTkwNzA5
+MjM1OTAwWjBxMQswCQYDVQQGEwJERTEcMBoGA1UEChMTRGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0G
+A1UECxMWVC1UZWxlU2VjIFRydXN0IENlbnRlcjEjMCEGA1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBS
+b290IENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCrC6M14IspFLEUha88EOQ5
+bzVdSq7d6mGNlUn0b2SjGmBmpKlAIoTZ1KXleJMOaAGtuU1cOs7TuKhCQN/Po7qCWWqSG6wcmtoI
+KyUn+WkjR/Hg6yx6m/UTAtB+NHzCnjwAWav12gz1MjwrrFDa1sPeg5TKqAyZMg4ISFZbavva4VhY
+AUlfckE8FQYBjl2tqriTtM2e66foai1SNNs671x1Udrb8zH57nGYMsRUFUQM+ZtV7a3fGAigo4aK
+Se5TBY8ZTNXeWHmb0mocQqvF1afPaA+W5OFhmHZhyJF81j4A4pFQh+GdCuatl9Idxjp9y7zaAzTV
+jlsB9WoHtxa2bkp/AgMBAAGjQjBAMB0GA1UdDgQWBBQxw3kbuvVT1xfgiXotF2wKsyudMzAPBgNV
+HRMECDAGAQH/AgEFMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAlGRZrTlk5ynr
+E/5aw4sTV8gEJPB0d8Bg42f76Ymmg7+Wgnxu1MM9756AbrsptJh6sTtU6zkXR34ajgv8HzFZMQSy
+zhfzLMdiNlXiItiJVbSYSKpk+tYcNthEeFpaIzpXl/V6ME+un2pMSyuOoAPjPuCp1NJ70rOo4nI8
+rZ7/gFnkm0W09juwzTkZmDLl6iFhkOQxIY40sfcvNUqFENrnijchvllj4PKFiDFT1FQUhXB59C4G
+dyd1Lx+4ivn+xbrYNuSD7Odlt79jWvNGr4GUN9RBjNYj1h7P9WgbRGOiWrqnNVmh5XAFmw4jV5mU
+Cm26OWMohpLzGITY+9HPBVZkVw==
+-----END CERTIFICATE-----
+
+Cybertrust Global Root
+======================
+-----BEGIN CERTIFICATE-----
+MIIDoTCCAomgAwIBAgILBAAAAAABD4WqLUgwDQYJKoZIhvcNAQEFBQAwOzEYMBYGA1UEChMPQ3li
+ZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2JhbCBSb290MB4XDTA2MTIxNTA4
+MDAwMFoXDTIxMTIxNTA4MDAwMFowOzEYMBYGA1UEChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQD
+ExZDeWJlcnRydXN0IEdsb2JhbCBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA
++Mi8vRRQZhP/8NN57CPytxrHjoXxEnOmGaoQ25yiZXRadz5RfVb23CO21O1fWLE3TdVJDm71aofW
+0ozSJ8bi/zafmGWgE07GKmSb1ZASzxQG9Dvj1Ci+6A74q05IlG2OlTEQXO2iLb3VOm2yHLtgwEZL
+AfVJrn5GitB0jaEMAs7u/OePuGtm839EAL9mJRQr3RAwHQeWP032a7iPt3sMpTjr3kfb1V05/Iin
+89cqdPHoWqI7n1C6poxFNcJQZZXcY4Lv3b93TZxiyWNzFtApD0mpSPCzqrdsxacwOUBdrsTiXSZT
+8M4cIwhhqJQZugRiQOwfOHB3EgZxpzAYXSUnpQIDAQABo4GlMIGiMA4GA1UdDwEB/wQEAwIBBjAP
+BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBS2CHsNesysIEyGVjJez6tuhS1wVzA/BgNVHR8EODA2
+MDSgMqAwhi5odHRwOi8vd3d3Mi5wdWJsaWMtdHJ1c3QuY29tL2NybC9jdC9jdHJvb3QuY3JsMB8G
+A1UdIwQYMBaAFLYIew16zKwgTIZWMl7Pq26FLXBXMA0GCSqGSIb3DQEBBQUAA4IBAQBW7wojoFRO
+lZfJ+InaRcHUowAl9B8Tq7ejhVhpwjCt2BWKLePJzYFa+HMjWqd8BfP9IjsO0QbE2zZMcwSO5bAi
+5MXzLqXZI+O4Tkogp24CJJ8iYGd7ix1yCcUxXOl5n4BHPa2hCwcUPUf/A2kaDAtE52Mlp3+yybh2
+hO0j9n0Hq0V+09+zv+mKts2oomcrUtW3ZfA5TGOgkXmTUg9U3YO7n9GPp1Nzw8v/MOx8BLjYRB+T
+X3EJIrduPuocA06dGiBh+4E37F78CkWr1+cXVdCg6mCbpvbjjFspwgZgFJ0tl0ypkxWdYcQBX0jW
+WL1WMRJOEcgh4LMRkWXbtKaIOM5V
+-----END CERTIFICATE-----
+
+ePKI Root Certification Authority
+=================================
+-----BEGIN CERTIFICATE-----
+MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBeMQswCQYDVQQG
+EwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0ZC4xKjAoBgNVBAsMIWVQS0kg
+Um9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMx
+MjdaMF4xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEq
+MCgGA1UECwwhZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0B
+AQEFAAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAHSyZbCUNs
+IZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAhijHyl3SJCRImHJ7K2RKi
+lTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3XDZoTM1PRYfl61dd4s5oz9wCGzh1NlDiv
+qOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX
+12ruOzjjK9SXDrkb5wdJfzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0O
+WQqraffAsgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uUWH1+
+ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLSnT0IFaUQAS2zMnao
+lQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pHdmX2Os+PYhcZewoozRrSgx4hxyy/
+vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJipNiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXi
+Zo1jDiVN1Rmy5nk3pyKdVDECAwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/Qkqi
+MAwGA1UdEwQFMAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH
+ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGBuvl2ICO1J2B0
+1GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6YlPwZpVnPDimZI+ymBV3QGypzq
+KOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkPJXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdV
+xrsStZf0X4OFunHB2WyBEXYKCrC/gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEP
+NXubrjlpC2JgQCA2j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+r
+GNm65ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUBo2M3IUxE
+xJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS/jQ6fbjpKdx2qcgw+BRx
+gMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2zGp1iro2C6pSe3VkQw63d4k3jMdXH7Ojy
+sP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTEW9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmOD
+BCEIZ43ygknQW/2xzQ+DhNQ+IIX3Sj0rnP0qCglN6oH4EZw=
+-----END CERTIFICATE-----
+
+certSIGN ROOT CA
+================
+-----BEGIN CERTIFICATE-----
+MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYTAlJPMREwDwYD
+VQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTAeFw0wNjA3MDQxNzIwMDRa
+Fw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UE
+CxMQY2VydFNJR04gUk9PVCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7I
+JUqOtdu0KBuqV5Do0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHH
+rfAQUySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5dRdY4zTW2
+ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQOA7+j0xbm0bqQfWwCHTD
+0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwvJoIQ4uNllAoEwF73XVv4EOLQunpL+943
+AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8B
+Af8EBAMCAcYwHQYDVR0OBBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IB
+AQA+0hyJLjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecYMnQ8
+SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ44gx+FkagQnIl6Z0
+x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6IJd1hJyMctTEHBDa0GpC9oHRxUIlt
+vBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNwi/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7Nz
+TogVZ96edhBiIL5VaZVDADlN9u6wWk5JRFRYX0KD
+-----END CERTIFICATE-----
+
+GeoTrust Primary Certification Authority - G3
+=============================================
+-----BEGIN CERTIFICATE-----
+MIID/jCCAuagAwIBAgIQFaxulBmyeUtB9iepwxgPHzANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UE
+BhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChjKSAyMDA4IEdlb1RydXN0
+IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFy
+eSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEczMB4XDTA4MDQwMjAwMDAwMFoXDTM3MTIwMTIz
+NTk1OVowgZgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAo
+YykgMjAwOCBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNVBAMT
+LUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMzCCASIwDQYJKoZI
+hvcNAQEBBQADggEPADCCAQoCggEBANziXmJYHTNXOTIz+uvLh4yn1ErdBojqZI4xmKU4kB6Yzy5j
+K/BGvESyiaHAKAxJcCGVn2TAppMSAmUmhsalifD614SgcK9PGpc/BkTVyetyEH3kMSj7HGHmKAdE
+c5IiaacDiGydY8hS2pgn5whMcD60yRLBxWeDXTPzAxHsatBT4tG6NmCUgLthY2xbF37fQJQeqw3C
+IShwiP/WJmxsYAQlTlV+fe+/lEjetx3dcI0FX4ilm/LC7urRQEFtYjgdVgbFA0dRIBn8exALDmKu
+dlW/X3e+PkkBUz2YJQN2JFodtNuJ6nnltrM7P7pMKEF/BqxqjsHQ9gUdfeZChuOl1UcCAwEAAaNC
+MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMR5yo6hTgMdHNxr
+2zFblD4/MH8tMA0GCSqGSIb3DQEBCwUAA4IBAQAtxRPPVoB7eni9n64smefv2t+UXglpp+duaIy9
+cr5HqQ6XErhK8WTTOd8lNNTBzU6B8A8ExCSzNJbGpqow32hhc9f5joWJ7w5elShKKiePEI4ufIbE
+Ap7aDHdlDkQNkv39sxY2+hENHYwOB4lqKVb3cvTdFZx3NWZXqxNT2I7BQMXXExZacse3aQHEerGD
+AWh9jUGhlBjBJVz88P6DAod8DQ3PLghcSkANPuyBYeYk28rgDi0Hsj5W3I31QYUHSJsMC8tJP33s
+t/3LjWeJGqvtux6jAAgIFyqCXDFdRootD4abdNlF+9RAsXqqaC2Gspki4cErx5z481+oghLrGREt
+-----END CERTIFICATE-----
+
+thawte Primary Root CA - G2
+===========================
+-----BEGIN CERTIFICATE-----
+MIICiDCCAg2gAwIBAgIQNfwmXNmET8k9Jj1Xm67XVjAKBggqhkjOPQQDAzCBhDELMAkGA1UEBhMC
+VVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjE4MDYGA1UECxMvKGMpIDIwMDcgdGhhd3RlLCBJbmMu
+IC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxJDAiBgNVBAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3Qg
+Q0EgLSBHMjAeFw0wNzExMDUwMDAwMDBaFw0zODAxMTgyMzU5NTlaMIGEMQswCQYDVQQGEwJVUzEV
+MBMGA1UEChMMdGhhd3RlLCBJbmMuMTgwNgYDVQQLEy8oYykgMjAwNyB0aGF3dGUsIEluYy4gLSBG
+b3IgYXV0aG9yaXplZCB1c2Ugb25seTEkMCIGA1UEAxMbdGhhd3RlIFByaW1hcnkgUm9vdCBDQSAt
+IEcyMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEotWcgnuVnfFSeIf+iha/BebfowJPDQfGAFG6DAJS
+LSKkQjnE/o/qycG+1E3/n3qe4rF8mq2nhglzh9HnmuN6papu+7qzcMBniKI11KOasf2twu8x+qi5
+8/sIxpHR+ymVo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQU
+mtgAMADna3+FGO6Lts6KDPgR4bswCgYIKoZIzj0EAwMDaQAwZgIxAN344FdHW6fmCsO99YCKlzUN
+G4k8VIZ3KMqh9HneteY4sPBlcIx/AlTCv//YoT7ZzwIxAMSNlPzcU9LcnXgWHxUzI1NS41oxXZ3K
+rr0TKUQNJ1uo52icEvdYPy5yAlejj6EULg==
+-----END CERTIFICATE-----
+
+thawte Primary Root CA - G3
+===========================
+-----BEGIN CERTIFICATE-----
+MIIEKjCCAxKgAwIBAgIQYAGXt0an6rS0mtZLL/eQ+zANBgkqhkiG9w0BAQsFADCBrjELMAkGA1UE
+BhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2
+aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIwMDggdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhv
+cml6ZWQgdXNlIG9ubHkxJDAiBgNVBAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EgLSBHMzAeFw0w
+ODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIGuMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMdGhh
+d3RlLCBJbmMuMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9uMTgwNgYD
+VQQLEy8oYykgMjAwOCB0aGF3dGUsIEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTEkMCIG
+A1UEAxMbdGhhd3RlIFByaW1hcnkgUm9vdCBDQSAtIEczMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A
+MIIBCgKCAQEAsr8nLPvb2FvdeHsbnndmgcs+vHyu86YnmjSjaDFxODNi5PNxZnmxqWWjpYvVj2At
+P0LMqmsywCPLLEHd5N/8YZzic7IilRFDGF/Eth9XbAoFWCLINkw6fKXRz4aviKdEAhN0cXMKQlkC
++BsUa0Lfb1+6a4KinVvnSr0eAXLbS3ToO39/fR8EtCab4LRarEc9VbjXsCZSKAExQGbY2SS99irY
+7CFJXJv2eul/VTV+lmuNk5Mny5K76qxAwJ/C+IDPXfRa3M50hqY+bAtTyr2SzhkGcuYMXDhpxwTW
+vGzOW/b3aJzcJRVIiKHpqfiYnODz1TEoYRFsZ5aNOZnLwkUkOQIDAQABo0IwQDAPBgNVHRMBAf8E
+BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUrWyqlGCc7eT/+j4KdCtjA/e2Wb8wDQYJ
+KoZIhvcNAQELBQADggEBABpA2JVlrAmSicY59BDlqQ5mU1143vokkbvnRFHfxhY0Cu9qRFHqKweK
+A3rD6z8KLFIWoCtDuSWQP3CpMyVtRRooOyfPqsMpQhvfO0zAMzRbQYi/aytlryjvsvXDqmbOe1bu
+t8jLZ8HJnBoYuMTDSQPxYA5QzUbF83d597YV4Djbxy8ooAw/dyZ02SUS2jHaGh7cKUGRIjxpp7sC
+8rZcJwOJ9Abqm+RyguOhCcHpABnTPtRwa7pxpqpYrvS76Wy274fMm7v/OeZWYdMKp8RcTGB7BXcm
+er/YB1IsYvdwY9k5vG8cwnncdimvzsUsZAReiDZuMdRAGmI0Nj81Aa6sY6A=
+-----END CERTIFICATE-----
+
+GeoTrust Primary Certification Authority - G2
+=============================================
+-----BEGIN CERTIFICATE-----
+MIICrjCCAjWgAwIBAgIQPLL0SAoA4v7rJDteYD7DazAKBggqhkjOPQQDAzCBmDELMAkGA1UEBhMC
+VVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChjKSAyMDA3IEdlb1RydXN0IElu
+Yy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBD
+ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcyMB4XDTA3MTEwNTAwMDAwMFoXDTM4MDExODIzNTk1
+OVowgZgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykg
+MjAwNyBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNVBAMTLUdl
+b1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMjB2MBAGByqGSM49AgEG
+BSuBBAAiA2IABBWx6P0DFUPlrOuHNxFi79KDNlJ9RVcLSo17VDs6bl8VAsBQps8lL33KSLjHUGMc
+KiEIfJo22Av+0SbFWDEwKCXzXV2juLaltJLtbCyf691DiaI8S0iRHVDsJt/WYC69IaNCMEAwDwYD
+VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBVfNVdRVfslsq0DafwBo/q+
+EVXVMAoGCCqGSM49BAMDA2cAMGQCMGSWWaboCd6LuvpaiIjwH5HTRqjySkwCY/tsXzjbLkGTqQ7m
+ndwxHLKgpxgceeHHNgIwOlavmnRs9vuD4DPTCF+hnMJbn0bWtsuRBmOiBuczrD6ogRLQy7rQkgu2
+npaqBA+K
+-----END CERTIFICATE-----
+
+VeriSign Universal Root Certification Authority
+===============================================
+-----BEGIN CERTIFICATE-----
+MIIEuTCCA6GgAwIBAgIQQBrEZCGzEyEDDrvkEhrFHTANBgkqhkiG9w0BAQsFADCBvTELMAkGA1UE
+BhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBO
+ZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwOCBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVk
+IHVzZSBvbmx5MTgwNgYDVQQDEy9WZXJpU2lnbiBVbml2ZXJzYWwgUm9vdCBDZXJ0aWZpY2F0aW9u
+IEF1dGhvcml0eTAeFw0wODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIG9MQswCQYDVQQGEwJV
+UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv
+cmsxOjA4BgNVBAsTMShjKSAyMDA4IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl
+IG9ubHkxODA2BgNVBAMTL1ZlcmlTaWduIFVuaXZlcnNhbCBSb290IENlcnRpZmljYXRpb24gQXV0
+aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx2E3XrEBNNti1xWb/1hajCMj
+1mCOkdeQmIN65lgZOIzF9uVkhbSicfvtvbnazU0AtMgtc6XHaXGVHzk8skQHnOgO+k1KxCHfKWGP
+MiJhgsWHH26MfF8WIFFE0XBPV+rjHOPMee5Y2A7Cs0WTwCznmhcrewA3ekEzeOEz4vMQGn+HLL72
+9fdC4uW/h2KJXwBL38Xd5HVEMkE6HnFuacsLdUYI0crSK5XQz/u5QGtkjFdN/BMReYTtXlT2NJ8I
+AfMQJQYXStrxHXpma5hgZqTZ79IugvHw7wnqRMkVauIDbjPTrJ9VAMf2CGqUuV/c4DPxhGD5WycR
+tPwW8rtWaoAljQIDAQABo4GyMIGvMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMG0G
+CCsGAQUFBwEMBGEwX6FdoFswWTBXMFUWCWltYWdlL2dpZjAhMB8wBwYFKw4DAhoEFI/l0xqGrI2O
+a8PPgGrUSBgsexkuMCUWI2h0dHA6Ly9sb2dvLnZlcmlzaWduLmNvbS92c2xvZ28uZ2lmMB0GA1Ud
+DgQWBBS2d/ppSEefUxLVwuoHMnYH0ZcHGTANBgkqhkiG9w0BAQsFAAOCAQEASvj4sAPmLGd75JR3
+Y8xuTPl9Dg3cyLk1uXBPY/ok+myDjEedO2Pzmvl2MpWRsXe8rJq+seQxIcaBlVZaDrHC1LGmWazx
+Y8u4TB1ZkErvkBYoH1quEPuBUDgMbMzxPcP1Y+Oz4yHJJDnp/RVmRvQbEdBNc6N9Rvk97ahfYtTx
+P/jgdFcrGJ2BtMQo2pSXpXDrrB2+BxHw1dvd5Yzw1TKwg+ZX4o+/vqGqvz0dtdQ46tewXDpPaj+P
+wGZsY6rp2aQW9IHRlRQOfc2VNNnSj3BzgXucfr2YYdhFh5iQxeuGMMY1v/D/w1WIg0vvBZIGcfK4
+mJO37M2CYfE45k+XmCpajQ==
+-----END CERTIFICATE-----
+
+VeriSign Class 3 Public Primary Certification Authority - G4
+============================================================
+-----BEGIN CERTIFICATE-----
+MIIDhDCCAwqgAwIBAgIQL4D+I4wOIg9IZxIokYesszAKBggqhkjOPQQDAzCByjELMAkGA1UEBhMC
+VVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3
+b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVz
+ZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmlj
+YXRpb24gQXV0aG9yaXR5IC0gRzQwHhcNMDcxMTA1MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCByjEL
+MAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBU
+cnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRo
+b3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5
+IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzQwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAASnVnp8
+Utpkmw4tXNherJI9/gHmGUo9FANL+mAnINmDiWn6VMaaGF5VKmTeBvaNSjutEDxlPZCIBIngMGGz
+rl0Bp3vefLK+ymVhAIau2o970ImtTR1ZmkGxvEeA3J5iw/mjgbIwga8wDwYDVR0TAQH/BAUwAwEB
+/zAOBgNVHQ8BAf8EBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2UvZ2lmMCEw
+HzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVyaXNpZ24u
+Y29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFLMWkf3upm7ktS5Jj4d4gYDs5bG1MAoGCCqGSM49BAMD
+A2gAMGUCMGYhDBgmYFo4e1ZC4Kf8NoRRkSAsdk1DPcQdhCPQrNZ8NQbOzWm9kA3bbEhCHQ6qQgIx
+AJw9SDkjOVgaFRJZap7v1VmyHVIsmXHNxynfGyphe3HR3vPA5Q06Sqotp9iGKt0uEA==
+-----END CERTIFICATE-----
+
+NetLock Arany (Class Gold) Főtanúsítvány
+========================================
+-----BEGIN CERTIFICATE-----
+MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQGEwJIVTERMA8G
+A1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610
+dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBB
+cmFueSAoQ2xhc3MgR29sZCkgRsWRdGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgx
+MjA2MTUwODIxWjCBpzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxO
+ZXRMb2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlmaWNhdGlv
+biBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNzIEdvbGQpIEbFkXRhbsO6
+c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxCRec75LbRTDofTjl5Bu
+0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrTlF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw
+/HpYzY6b7cNGbIRwXdrzAZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAk
+H3B5r9s5VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRGILdw
+fzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2BJtr+UBdADTHLpl1
+neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAGAQH/AgEEMA4GA1UdDwEB/wQEAwIB
+BjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2MU9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwW
+qZw8UQCgwBEIBaeZ5m8BiFRhbvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTta
+YtOUZcTh5m2C+C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC
+bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2FuLjbvrW5Kfna
+NwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2XjG4Kvte9nHfRCaexOYNkbQu
+dZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E=
+-----END CERTIFICATE-----
+
+Staat der Nederlanden Root CA - G2
+==================================
+-----BEGIN CERTIFICATE-----
+MIIFyjCCA7KgAwIBAgIEAJiWjDANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJOTDEeMBwGA1UE
+CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFhdCBkZXIgTmVkZXJsYW5kZW4g
+Um9vdCBDQSAtIEcyMB4XDTA4MDMyNjExMTgxN1oXDTIwMDMyNTExMDMxMFowWjELMAkGA1UEBhMC
+TkwxHjAcBgNVBAoMFVN0YWF0IGRlciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5l
+ZGVybGFuZGVuIFJvb3QgQ0EgLSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMVZ
+5291qj5LnLW4rJ4L5PnZyqtdj7U5EILXr1HgO+EASGrP2uEGQxGZqhQlEq0i6ABtQ8SpuOUfiUtn
+vWFI7/3S4GCI5bkYYCjDdyutsDeqN95kWSpGV+RLufg3fNU254DBtvPUZ5uW6M7XxgpT0GtJlvOj
+CwV3SPcl5XCsMBQgJeN/dVrlSPhOewMHBPqCYYdu8DvEpMfQ9XQ+pV0aCPKbJdL2rAQmPlU6Yiil
+e7Iwr/g3wtG61jj99O9JMDeZJiFIhQGp5Rbn3JBV3w/oOM2ZNyFPXfUib2rFEhZgF1XyZWampzCR
+OME4HYYEhLoaJXhena/MUGDWE4dS7WMfbWV9whUYdMrhfmQpjHLYFhN9C0lK8SgbIHRrxT3dsKpI
+CT0ugpTNGmXZK4iambwYfp/ufWZ8Pr2UuIHOzZgweMFvZ9C+X+Bo7d7iscksWXiSqt8rYGPy5V65
+48r6f1CGPqI0GAwJaCgRHOThuVw+R7oyPxjMW4T182t0xHJ04eOLoEq9jWYv6q012iDTiIJh8BIi
+trzQ1aTsr1SIJSQ8p22xcik/Plemf1WvbibG/ufMQFxRRIEKeN5KzlW/HdXZt1bv8Hb/C3m1r737
+qWmRRpdogBQ2HbN/uymYNqUg+oJgYjOk7Na6B6duxc8UpufWkjTYgfX8HV2qXB72o007uPc5AgMB
+AAGjgZcwgZQwDwYDVR0TAQH/BAUwAwEB/zBSBgNVHSAESzBJMEcGBFUdIAAwPzA9BggrBgEFBQcC
+ARYxaHR0cDovL3d3dy5wa2lvdmVyaGVpZC5ubC9wb2xpY2llcy9yb290LXBvbGljeS1HMjAOBgNV
+HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJFoMocVHYnitfGsNig0jQt8YojrMA0GCSqGSIb3DQEBCwUA
+A4ICAQCoQUpnKpKBglBu4dfYszk78wIVCVBR7y29JHuIhjv5tLySCZa59sCrI2AGeYwRTlHSeYAz
++51IvuxBQ4EffkdAHOV6CMqqi3WtFMTC6GY8ggen5ieCWxjmD27ZUD6KQhgpxrRW/FYQoAUXvQwj
+f/ST7ZwaUb7dRUG/kSS0H4zpX897IZmflZ85OkYcbPnNe5yQzSipx6lVu6xiNGI1E0sUOlWDuYaN
+kqbG9AclVMwWVxJKgnjIFNkXgiYtXSAfea7+1HAWFpWD2DU5/1JddRwWxRNVz0fMdWVSSt7wsKfk
+CpYL+63C4iWEst3kvX5ZbJvw8NjnyvLplzh+ib7M+zkXYT9y2zqR2GUBGR2tUKRXCnxLvJxxcypF
+URmFzI79R6d0lR2o0a9OF7FpJsKqeFdbxU2n5Z4FF5TKsl+gSRiNNOkmbEgeqmiSBeGCc1qb3Adb
+CG19ndeNIdn8FCCqwkXfP+cAslHkwvgFuXkajDTznlvkN1trSt8sV4pAWja63XVECDdCcAz+3F4h
+oKOKwJCcaNpQ5kUQR3i2TtJlycM33+FCY7BXN0Ute4qcvwXqZVUz9zkQxSgqIXobisQk+T8VyJoV
+IPVVYpbtbZNQvOSqeK3Zywplh6ZmwcSBo3c6WB4L7oOLnR7SUqTMHW+wmG2UMbX4cQrcufx9MmDm
+66+KAQ==
+-----END CERTIFICATE-----
+
+Hongkong Post Root CA 1
+=======================
+-----BEGIN CERTIFICATE-----
+MIIDMDCCAhigAwIBAgICA+gwDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCSEsxFjAUBgNVBAoT
+DUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3QgUm9vdCBDQSAxMB4XDTAzMDUx
+NTA1MTMxNFoXDTIzMDUxNTA0NTIyOVowRzELMAkGA1UEBhMCSEsxFjAUBgNVBAoTDUhvbmdrb25n
+IFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3QgUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEF
+AAOCAQ8AMIIBCgKCAQEArP84tulmAknjorThkPlAj3n54r15/gK97iSSHSL22oVyaf7XPwnU3ZG1
+ApzQjVrhVcNQhrkpJsLj2aDxaQMoIIBFIi1WpztUlVYiWR8o3x8gPW2iNr4joLFutbEnPzlTCeqr
+auh0ssJlXI6/fMN4hM2eFvz1Lk8gKgifd/PFHsSaUmYeSF7jEAaPIpjhZY4bXSNmO7ilMlHIhqqh
+qZ5/dpTCpmy3QfDVyAY45tQM4vM7TG1QjMSDJ8EThFk9nnV0ttgCXjqQesBCNnLsak3c78QA3xMY
+V18meMjWCnl3v/evt3a5pQuEF10Q6m/hq5URX208o1xNg1vysxmKgIsLhwIDAQABoyYwJDASBgNV
+HRMBAf8ECDAGAQH/AgEDMA4GA1UdDwEB/wQEAwIBxjANBgkqhkiG9w0BAQUFAAOCAQEADkbVPK7i
+h9legYsCmEEIjEy82tvuJxuC52pF7BaLT4Wg87JwvVqWuspube5Gi27nKi6Wsxkz67SfqLI37pio
+l7Yutmcn1KZJ/RyTZXaeQi/cImyaT/JaFTmxcdcrUehtHJjA2Sr0oYJ71clBoiMBdDhViw+5Lmei
+IAQ32pwL0xch4I+XeTRvhEgCIDMb5jREn5Fw9IBehEPCKdJsEhTkYY2sEJCehFC78JZvRZ+K88ps
+T/oROhUVRsPNH4NbLUES7VBnQRM9IauUiqpOfMGx+6fWtScvl6tu4B3i0RwsH0Ti/L6RoZz71ilT
+c4afU9hDDl3WY4JxHYB0yvbiAmvZWg==
+-----END CERTIFICATE-----
+
+SecureSign RootCA11
+===================
+-----BEGIN CERTIFICATE-----
+MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDErMCkGA1UEChMi
+SmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoGA1UEAxMTU2VjdXJlU2lnbiBS
+b290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSsw
+KQYDVQQKEyJKYXBhbiBDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1
+cmVTaWduIFJvb3RDQTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvL
+TJszi1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8h9uuywGO
+wvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOVMdrAG/LuYpmGYz+/3ZMq
+g6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rP
+O7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitA
+bpSACW22s293bzUIUPsCh8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZX
+t94wDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAKCh
+OBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xmKbabfSVSSUOrTC4r
+bnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQX5Ucv+2rIrVls4W6ng+4reV6G4pQ
+Oh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWrQbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01
+y8hSyn+B/tlr0/cR7SXf+Of5pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061
+lgeLKBObjBmNQSdJQO7e5iNEOdyhIta6A/I=
+-----END CERTIFICATE-----
+
+Microsec e-Szigno Root CA 2009
+==============================
+-----BEGIN CERTIFICATE-----
+MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYDVQQGEwJIVTER
+MA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jv
+c2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o
+dTAeFw0wOTA2MTYxMTMwMThaFw0yOTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UE
+BwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUt
+U3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTCCASIw
+DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvPkd6mJviZpWNwrZuuyjNA
+fW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tccbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG
+0IMZfcChEhyVbUr02MelTTMuhTlAdX4UfIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKA
+pxn1ntxVUwOXewdI/5n7N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm
+1HxdrtbCxkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1+rUC
+AwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTLD8bf
+QkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAbBgNVHREE
+FDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqGSIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0o
+lZMEyL/azXm4Q5DwpL7v8u8hmLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfX
+I/OMn74dseGkddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775
+tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c2Pm2G2JwCz02
+yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5tHMN1Rq41Bab2XD0h7lbwyYIi
+LXpUq3DDfSJlgnCW
+-----END CERTIFICATE-----
+
+GlobalSign Root CA - R3
+=======================
+-----BEGIN CERTIFICATE-----
+MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4GA1UECxMXR2xv
+YmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2Jh
+bFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxT
+aWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2ln
+bjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWt
+iHL8RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsTgHeMCOFJ
+0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmmKPZpO/bLyCiR5Z2KYVc3
+rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zdQQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjl
+OCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZXriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2
+xmmFghcCAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE
+FI/wS3+oLkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZURUm7
+lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMpjjM5RcOO5LlXbKr8
+EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK6fBdRoyV3XpYKBovHd7NADdBj+1E
+bddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQXmcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18
+YIvDQVETI53O9zJrlAGomecsMx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7r
+kpeDMdmztcpHWD9f
+-----END CERTIFICATE-----
+
+Autoridad de Certificacion Firmaprofesional CIF A62634068
+=========================================================
+-----BEGIN CERTIFICATE-----
+MIIGFDCCA/ygAwIBAgIIU+w77vuySF8wDQYJKoZIhvcNAQEFBQAwUTELMAkGA1UEBhMCRVMxQjBA
+BgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1hcHJvZmVzaW9uYWwgQ0lGIEE2
+MjYzNDA2ODAeFw0wOTA1MjAwODM4MTVaFw0zMDEyMzEwODM4MTVaMFExCzAJBgNVBAYTAkVTMUIw
+QAYDVQQDDDlBdXRvcmlkYWQgZGUgQ2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBB
+NjI2MzQwNjgwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDD
+Utd9thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQMcas9UX4P
+B99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefGL9ItWY16Ck6WaVICqjaY
+7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15iNA9wBj4gGFrO93IbJWyTdBSTo3OxDqqH
+ECNZXyAFGUftaI6SEspd/NYrspI8IM/hX68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyI
+plD9amML9ZMWGxmPsu2bm8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctX
+MbScyJCyZ/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirjaEbsX
+LZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/TKI8xWVvTyQKmtFLK
+bpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF6NkBiDkal4ZkQdU7hwxu+g/GvUgU
+vzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVhOSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMBIGA1Ud
+EwEB/wQIMAYBAf8CAQEwDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRlzeurNR4APn7VdMActHNH
+DhpkLzCBpgYDVR0gBIGeMIGbMIGYBgRVHSAAMIGPMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmZp
+cm1hcHJvZmVzaW9uYWwuY29tL2NwczBcBggrBgEFBQcCAjBQHk4AUABhAHMAZQBvACAAZABlACAA
+bABhACAAQgBvAG4AYQBuAG8AdgBhACAANAA3ACAAQgBhAHIAYwBlAGwAbwBuAGEAIAAwADgAMAAx
+ADcwDQYJKoZIhvcNAQEFBQADggIBABd9oPm03cXF661LJLWhAqvdpYhKsg9VSytXjDvlMd3+xDLx
+51tkljYyGOylMnfX40S2wBEqgLk9am58m9Ot/MPWo+ZkKXzR4Tgegiv/J2Wv+xYVxC5xhOW1//qk
+R71kMrv2JYSiJ0L1ILDCExARzRAVukKQKtJE4ZYm6zFIEv0q2skGz3QeqUvVhyj5eTSSPi5E6PaP
+T481PyWzOdxjKpBrIF/EUhJOlywqrJ2X3kjyo2bbwtKDlaZmp54lD+kLM5FlClrD2VQS3a/DTg4f
+Jl4N3LON7NWBcN7STyQF82xO9UxJZo3R/9ILJUFI/lGExkKvgATP0H5kSeTy36LssUzAKh3ntLFl
+osS88Zj0qnAHY7S42jtM+kAiMFsRpvAFDsYCA0irhpuF3dvd6qJ2gHN99ZwExEWN57kci57q13XR
+crHedUTnQn3iV2t93Jm8PYMo6oCTjcVMZcFwgbg4/EMxsvYDNEeyrPsiBsse3RdHHF9mudMaotoR
+saS8I8nkvof/uZS2+F0gStRf571oe2XyFR7SOqkt6dhrJKyXWERHrVkY8SFlcN7ONGCoQPHzPKTD
+KCOM/iczQ0CgFzzr6juwcqajuUpLXhZI9LK8yIySxZ2frHI2vDSANGupi5LAuBft7HZT9SQBjLMi
+6Et8Vcad+qMUu2WFbm5PEn4KPJ2V
+-----END CERTIFICATE-----
+
+Izenpe.com
+==========
+-----BEGIN CERTIFICATE-----
+MIIF8TCCA9mgAwIBAgIQALC3WhZIX7/hy/WL1xnmfTANBgkqhkiG9w0BAQsFADA4MQswCQYDVQQG
+EwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6ZW5wZS5jb20wHhcNMDcxMjEz
+MTMwODI4WhcNMzcxMjEzMDgyNzI1WjA4MQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMu
+QS4xEzARBgNVBAMMCkl6ZW5wZS5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDJ
+03rKDx6sp4boFmVqscIbRTJxldn+EFvMr+eleQGPicPK8lVx93e+d5TzcqQsRNiekpsUOqHnJJAK
+ClaOxdgmlOHZSOEtPtoKct2jmRXagaKH9HtuJneJWK3W6wyyQXpzbm3benhB6QiIEn6HLmYRY2xU
++zydcsC8Lv/Ct90NduM61/e0aL6i9eOBbsFGb12N4E3GVFWJGjMxCrFXuaOKmMPsOzTFlUFpfnXC
+PCDFYbpRR6AgkJOhkEvzTnyFRVSa0QUmQbC1TR0zvsQDyCV8wXDbO/QJLVQnSKwv4cSsPsjLkkxT
+OTcj7NMB+eAJRE1NZMDhDVqHIrytG6P+JrUV86f8hBnp7KGItERphIPzidF0BqnMC9bC3ieFUCbK
+F7jJeodWLBoBHmy+E60QrLUk9TiRodZL2vG70t5HtfG8gfZZa88ZU+mNFctKy6lvROUbQc/hhqfK
+0GqfvEyNBjNaooXlkDWgYlwWTvDjovoDGrQscbNYLN57C9saD+veIR8GdwYDsMnvmfzAuU8Lhij+
+0rnq49qlw0dpEuDb8PYZi+17cNcC1u2HGCgsBCRMd+RIihrGO5rUD8r6ddIBQFqNeb+Lz0vPqhbB
+leStTIo+F5HUsWLlguWABKQDfo2/2n+iD5dPDNMN+9fR5XJ+HMh3/1uaD7euBUbl8agW7EekFwID
+AQABo4H2MIHzMIGwBgNVHREEgagwgaWBD2luZm9AaXplbnBlLmNvbaSBkTCBjjFHMEUGA1UECgw+
+SVpFTlBFIFMuQS4gLSBDSUYgQTAxMzM3MjYwLVJNZXJjLlZpdG9yaWEtR2FzdGVpeiBUMTA1NSBG
+NjIgUzgxQzBBBgNVBAkMOkF2ZGEgZGVsIE1lZGl0ZXJyYW5lbyBFdG9yYmlkZWEgMTQgLSAwMTAx
+MCBWaXRvcmlhLUdhc3RlaXowDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0O
+BBYEFB0cZQ6o8iV7tJHP5LGx5r1VdGwFMA0GCSqGSIb3DQEBCwUAA4ICAQB4pgwWSp9MiDrAyw6l
+Fn2fuUhfGI8NYjb2zRlrrKvV9pF9rnHzP7MOeIWblaQnIUdCSnxIOvVFfLMMjlF4rJUT3sb9fbga
+kEyrkgPH7UIBzg/YsfqikuFgba56awmqxinuaElnMIAkejEWOVt+8Rwu3WwJrfIxwYJOubv5vr8q
+hT/AQKM6WfxZSzwoJNu0FXWuDYi6LnPAvViH5ULy617uHjAimcs30cQhbIHsvm0m5hzkQiCeR7Cs
+g1lwLDXWrzY0tM07+DKo7+N4ifuNRSzanLh+QBxh5z6ikixL8s36mLYp//Pye6kfLqCTVyvehQP5
+aTfLnnhqBbTFMXiJ7HqnheG5ezzevh55hM6fcA5ZwjUukCox2eRFekGkLhObNA5me0mrZJfQRsN5
+nXJQY6aYWwa9SG3YOYNw6DXwBdGqvOPbyALqfP2C2sJbUjWumDqtujWTI6cfSN01RpiyEGjkpTHC
+ClguGYEQyVB1/OpaFs4R1+7vUIgtYf8/QnMFlEPVjjxOAToZpR9GTnfQXeWBIiGH/pR9hNiTrdZo
+Q0iy2+tzJOeRf1SktoA+naM8THLCV8Sg1Mw4J87VBp6iSNnpn86CcDaTmjvfliHjWbcM2pE38P1Z
+WrOZyGlsQyYBNWNgVYkDOnXYukrZVP/u3oDYLdE41V4tC5h9Pmzb/CaIxw==
+-----END CERTIFICATE-----
+
+Chambers of Commerce Root - 2008
+================================
+-----BEGIN CERTIFICATE-----
+MIIHTzCCBTegAwIBAgIJAKPaQn6ksa7aMA0GCSqGSIb3DQEBBQUAMIGuMQswCQYDVQQGEwJFVTFD
+MEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNv
+bS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMu
+QS4xKTAnBgNVBAMTIENoYW1iZXJzIG9mIENvbW1lcmNlIFJvb3QgLSAyMDA4MB4XDTA4MDgwMTEy
+Mjk1MFoXDTM4MDczMTEyMjk1MFowga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNl
+ZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29tL2FkZHJlc3MpMRIwEAYDVQQF
+EwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVyZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJl
+cnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDgwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC
+AQCvAMtwNyuAWko6bHiUfaN/Gh/2NdW928sNRHI+JrKQUrpjOyhYb6WzbZSm891kDFX29ufyIiKA
+XuFixrYp4YFs8r/lfTJqVKAyGVn+H4vXPWCGhSRv4xGzdz4gljUha7MI2XAuZPeEklPWDrCQiorj
+h40G072QDuKZoRuGDtqaCrsLYVAGUvGef3bsyw/QHg3PmTA9HMRFEFis1tPo1+XqxQEHd9ZR5gN/
+ikilTWh1uem8nk4ZcfUyS5xtYBkL+8ydddy/Js2Pk3g5eXNeJQ7KXOt3EgfLZEFHcpOrUMPrCXZk
+NNI5t3YRCQ12RcSprj1qr7V9ZS+UWBDsXHyvfuK2GNnQm05aSd+pZgvMPMZ4fKecHePOjlO+Bd5g
+D2vlGts/4+EhySnB8esHnFIbAURRPHsl18TlUlRdJQfKFiC4reRB7noI/plvg6aRArBsNlVq5331
+lubKgdaX8ZSD6e2wsWsSaR6s+12pxZjptFtYer49okQ6Y1nUCyXeG0+95QGezdIp1Z8XGQpvvwyQ
+0wlf2eOKNcx5Wk0ZN5K3xMGtr/R5JJqyAQuxr1yW84Ay+1w9mPGgP0revq+ULtlVmhduYJ1jbLhj
+ya6BXBg14JC7vjxPNyK5fuvPnnchpj04gftI2jE9K+OJ9dC1vX7gUMQSibMjmhAxhduub+84Mxh2
+EQIDAQABo4IBbDCCAWgwEgYDVR0TAQH/BAgwBgEB/wIBDDAdBgNVHQ4EFgQU+SSsD7K1+HnA+mCI
+G8TZTQKeFxkwgeMGA1UdIwSB2zCB2IAU+SSsD7K1+HnA+mCIG8TZTQKeFxmhgbSkgbEwga4xCzAJ
+BgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNlZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNh
+bWVyZmlybWEuY29tL2FkZHJlc3MpMRIwEAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENh
+bWVyZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDiC
+CQCj2kJ+pLGu2jAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUH
+AgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZIhvcNAQEFBQADggIBAJASryI1
+wqM58C7e6bXpeHxIvj99RZJe6dqxGfwWPJ+0W2aeaufDuV2I6A+tzyMP3iU6XsxPpcG1Lawk0lgH
+3qLPaYRgM+gQDROpI9CF5Y57pp49chNyM/WqfcZjHwj0/gF/JM8rLFQJ3uIrbZLGOU8W6jx+ekbU
+RWpGqOt1glanq6B8aBMz9p0w8G8nOSQjKpD9kCk18pPfNKXG9/jvjA9iSnyu0/VU+I22mlaHFoI6
+M6taIgj3grrqLuBHmrS1RaMFO9ncLkVAO+rcf+g769HsJtg1pDDFOqxXnrN2pSB7+R5KBWIBpih1
+YJeSDW4+TTdDDZIVnBgizVGZoCkaPF+KMjNbMMeJL0eYD6MDxvbxrN8y8NmBGuScvfaAFPDRLLmF
+9dijscilIeUcE5fuDr3fKanvNFNb0+RqE4QGtjICxFKuItLcsiFCGtpA8CnJ7AoMXOLQusxI0zcK
+zBIKinmwPQN/aUv0NCB9szTqjktk9T79syNnFQ0EuPAtwQlRPLJsFfClI9eDdOTlLsn+mCdCxqvG
+nrDQWzilm1DefhiYtUU79nm06PcaewaD+9CL2rvHvRirCG88gGtAPxkZumWK5r7VXNM21+9AUiRg
+OGcEMeyP84LG3rlV8zsxkVrctQgVrXYlCg17LofiDKYGvCYQbTed7N14jHyAxfDZd0jQ
+-----END CERTIFICATE-----
+
+Global Chambersign Root - 2008
+==============================
+-----BEGIN CERTIFICATE-----
+MIIHSTCCBTGgAwIBAgIJAMnN0+nVfSPOMA0GCSqGSIb3DQEBBQUAMIGsMQswCQYDVQQGEwJFVTFD
+MEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNv
+bS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMu
+QS4xJzAlBgNVBAMTHkdsb2JhbCBDaGFtYmVyc2lnbiBSb290IC0gMjAwODAeFw0wODA4MDExMjMx
+NDBaFw0zODA3MzExMjMxNDBaMIGsMQswCQYDVQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUg
+Y3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJ
+QTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAlBgNVBAMTHkdsb2JhbCBD
+aGFtYmVyc2lnbiBSb290IC0gMjAwODCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMDf
+VtPkOpt2RbQT2//BthmLN0EYlVJH6xedKYiONWwGMi5HYvNJBL99RDaxccy9Wglz1dmFRP+RVyXf
+XjaOcNFccUMd2drvXNL7G706tcuto8xEpw2uIRU/uXpbknXYpBI4iRmKt4DS4jJvVpyR1ogQC7N0
+ZJJ0YPP2zxhPYLIj0Mc7zmFLmY/CDNBAspjcDahOo7kKrmCgrUVSY7pmvWjg+b4aqIG7HkF4ddPB
+/gBVsIdU6CeQNR1MM62X/JcumIS/LMmjv9GYERTtY/jKmIhYF5ntRQOXfjyGHoiMvvKRhI9lNNgA
+TH23MRdaKXoKGCQwoze1eqkBfSbW+Q6OWfH9GzO1KTsXO0G2Id3UwD2ln58fQ1DJu7xsepeY7s2M
+H/ucUa6LcL0nn3HAa6x9kGbo1106DbDVwo3VyJ2dwW3Q0L9R5OP4wzg2rtandeavhENdk5IMagfe
+Ox2YItaswTXbo6Al/3K1dh3ebeksZixShNBFks4c5eUzHdwHU1SjqoI7mjcv3N2gZOnm3b2u/GSF
+HTynyQbehP9r6GsaPMWis0L7iwk+XwhSx2LE1AVxv8Rk5Pihg+g+EpuoHtQ2TS9x9o0o9oOpE9Jh
+wZG7SMA0j0GMS0zbaRL/UJScIINZc+18ofLx/d33SdNDWKBWY8o9PeU1VlnpDsogzCtLkykPAgMB
+AAGjggFqMIIBZjASBgNVHRMBAf8ECDAGAQH/AgEMMB0GA1UdDgQWBBS5CcqcHtvTbDprru1U8VuT
+BjUuXjCB4QYDVR0jBIHZMIHWgBS5CcqcHtvTbDprru1U8VuTBjUuXqGBsqSBrzCBrDELMAkGA1UE
+BhMCRVUxQzBBBgNVBAcTOk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuY2FtZXJm
+aXJtYS5jb20vYWRkcmVzcykxEjAQBgNVBAUTCUE4Mjc0MzI4NzEbMBkGA1UEChMSQUMgQ2FtZXJm
+aXJtYSBTLkEuMScwJQYDVQQDEx5HbG9iYWwgQ2hhbWJlcnNpZ24gUm9vdCAtIDIwMDiCCQDJzdPp
+1X0jzjAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0
+dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZIhvcNAQEFBQADggIBAICIf3DekijZBZRG
+/5BXqfEv3xoNa/p8DhxJJHkn2EaqbylZUohwEurdPfWbU1Rv4WCiqAm57OtZfMY18dwY6fFn5a+6
+ReAJ3spED8IXDneRRXozX1+WLGiLwUePmJs9wOzL9dWCkoQ10b42OFZyMVtHLaoXpGNR6woBrX/s
+dZ7LoR/xfxKxueRkf2fWIyr0uDldmOghp+G9PUIadJpwr2hsUF1Jz//7Dl3mLEfXgTpZALVza2Mg
+9jFFCDkO9HB+QHBaP9BrQql0PSgvAm11cpUJjUhjxsYjV5KTXjXBjfkK9yydYhz2rXzdpjEetrHH
+foUm+qRqtdpjMNHvkzeyZi99Bffnt0uYlDXA2TopwZ2yUDMdSqlapskD7+3056huirRXhOukP9Du
+qqqHW2Pok+JrqNS4cnhrG+055F3Lm6qH1U9OAP7Zap88MQ8oAgF9mOinsKJknnn4SPIVqczmyETr
+P3iZ8ntxPjzxmKfFGBI/5rsoM0LpRQp8bfKGeS/Fghl9CYl8slR2iK7ewfPM4W7bMdaTrpmg7yVq
+c5iJWzouE4gev8CSlDQb4ye3ix5vQv/n6TebUB0tovkC7stYWDpxvGjjqsGvHCgfotwjZT+B6q6Z
+09gwzxMNTxXJhLynSC34MCN32EZLeW32jO06f2ARePTpm67VVMB0gNELQp/B
+-----END CERTIFICATE-----
+
+Go Daddy Root Certificate Authority - G2
+========================================
+-----BEGIN CERTIFICATE-----
+MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT
+B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMu
+MTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5
+MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6
+b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8G
+A1UEAxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI
+hvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKDE6bFIEMBO4Tx5oVJnyfq
+9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD
++qK+ihVqf94Lw7YZFAXK6sOoBJQ7RnwyDfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutd
+fMh8+7ArU6SSYmlRJQVhGkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMl
+NAJWJwGRtDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEAAaNC
+MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFDqahQcQZyi27/a9
+BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmXWWcDYfF+OwYxdS2hII5PZYe096ac
+vNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r
+5N9ss4UXnT3ZJE95kTXWXwTrgIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYV
+N8Gb5DKj7Tjo2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO
+LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI4uJEvlz36hz1
+-----END CERTIFICATE-----
+
+Starfield Root Certificate Authority - G2
+=========================================
+-----BEGIN CERTIFICATE-----
+MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT
+B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9s
+b2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVsZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0
+eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAw
+DgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQg
+VGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZpY2F0ZSBB
+dXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3twQP89o/8ArFv
+W59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMgnLRJdzIpVv257IzdIvpy3Cdhl+72WoTs
+bhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNk
+N3mSwOxGXn/hbVNMYq/NHwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7Nf
+ZTD4p7dNdloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0HZbU
+JtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC
+AQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0GCSqGSIb3DQEBCwUAA4IBAQARWfol
+TwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjUsHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx
+4mcujJUDJi5DnUox9g61DLu34jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUw
+F5okxBDgBPfg8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K
+pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1mMpYjn0q7pBZ
+c2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0
+-----END CERTIFICATE-----
+
+Starfield Services Root Certificate Authority - G2
+==================================================
+-----BEGIN CERTIFICATE-----
+MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgT
+B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9s
+b2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRl
+IEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNV
+BAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxT
+dGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2VydmljZXMg
+Um9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC
+AQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20pOsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2
+h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm28xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4Pa
+hHQUw2eeBGg6345AWh1KTs9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLP
+LJGmpufehRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk6mFB
+rMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAwDwYDVR0TAQH/BAUw
+AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMA0GCSqG
+SIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMIbw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPP
+E95Dz+I0swSdHynVv/heyNXBve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTy
+xQGjhdByPq1zqwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd
+iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn0q23KXB56jza
+YyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCNsSi6
+-----END CERTIFICATE-----
+
+AffirmTrust Commercial
+======================
+-----BEGIN CERTIFICATE-----
+MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UEBhMCVVMxFDAS
+BgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBDb21tZXJjaWFsMB4XDTEw
+MDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmly
+bVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEF
+AAOCAQ8AMIIBCgKCAQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6Eqdb
+DuKPHx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yrba0F8PrV
+C8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPALMeIrJmqbTFeurCA+ukV6
+BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1yHp52UKqK39c/s4mT6NmgTWvRLpUHhww
+MmWd5jyTXlBOeuM61G7MGvv50jeuJCqrVwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNV
+HQ4EFgQUnZPGU4teyq8/nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC
+AQYwDQYJKoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYGXUPG
+hi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNjvbz4YYCanrHOQnDi
+qX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivtZ8SOyUOyXGsViQK8YvxO8rUzqrJv
+0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9gN53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0kh
+sUlHRUe072o0EclNmsxZt9YCnlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8=
+-----END CERTIFICATE-----
+
+AffirmTrust Networking
+======================
+-----BEGIN CERTIFICATE-----
+MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UEBhMCVVMxFDAS
+BgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBOZXR3b3JraW5nMB4XDTEw
+MDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmly
+bVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEF
+AAOCAQ8AMIIBCgKCAQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SE
+Hi3yYJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbuakCNrmreI
+dIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRLQESxG9fhwoXA3hA/Pe24
+/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gb
+h+0t+nvujArjqWaJGctB+d1ENmHP4ndGyH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNV
+HQ4EFgQUBx/S55zawm6iQLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC
+AQYwDQYJKoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfOtDIu
+UFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzuQY0x2+c06lkh1QF6
+12S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZLgo/bNjR9eUJtGxUAArgFU2HdW23
+WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4uolu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9
+/ZFvgrG+CJPbFEfxojfHRZ48x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s=
+-----END CERTIFICATE-----
+
+AffirmTrust Premium
+===================
+-----BEGIN CERTIFICATE-----
+MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UEBhMCVVMxFDAS
+BgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVzdCBQcmVtaXVtMB4XDTEwMDEy
+OTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRy
+dXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A
+MIICCgKCAgEAxBLfqV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtn
+BKAQJG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ+jjeRFcV
+5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrSs8PhaJyJ+HoAVt70VZVs
++7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmd
+GPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d770O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5R
+p9EixAqnOEhss/n/fauGV+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NI
+S+LI+H+SqHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S5u04
+6uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4IaC1nEWTJ3s7xgaVY5
+/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TXOwF0lkLgAOIua+rF7nKsu7/+6qqo
++Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYEFJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB
+/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByv
+MiPIs0laUZx2KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg
+Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B8OWycvpEgjNC
+6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQMKSOyARiqcTtNd56l+0OOF6S
+L5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK
++4w1IX2COPKpVJEZNZOUbWo6xbLQu4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmV
+BtWVyuEklut89pMFu+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFg
+IxpHYoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8GKa1qF60
+g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaORtGdFNrHF+QFlozEJLUb
+zxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6eKeC2uAloGRwYQw==
+-----END CERTIFICATE-----
+
+AffirmTrust Premium ECC
+=======================
+-----BEGIN CERTIFICATE-----
+MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMCVVMxFDASBgNV
+BAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQcmVtaXVtIEVDQzAeFw0xMDAx
+MjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJBgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1U
+cnVzdDEgMB4GA1UEAwwXQWZmaXJtVHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQA
+IgNiAAQNMF4bFZ0D0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQ
+N8O9ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0GA1UdDgQW
+BBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAK
+BggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/VsaobgxCd05DhT1wV/GzTjxi+zygk8N53X
+57hG8f2h4nECMEJZh0PUUd+60wkyWs6Iflc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKM
+eQ==
+-----END CERTIFICATE-----
+
+Certum Trusted Network CA
+=========================
+-----BEGIN CERTIFICATE-----
+MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBMMSIwIAYDVQQK
+ExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlv
+biBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBUcnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIy
+MTIwNzM3WhcNMjkxMjMxMTIwNzM3WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBU
+ZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5
+MSIwIAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0BAQEFAAOC
+AQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rHUV+rpDKmYYe2bg+G0jAC
+l/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LMTXPb865Px1bVWqeWifrzq2jUI4ZZJ88J
+J7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVUBBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4
+fOQtf/WsX+sWn7Et0brMkUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0
+cvW0QM8xAcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNVHRMB
+Af8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNVHQ8BAf8EBAMCAQYw
+DQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15ysHhE49wcrwn9I0j6vSrEuVUEtRCj
+jSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfLI9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1
+mS1FhIrlQgnXdAIv94nYmem8J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5aj
+Zt3hrvJBW8qYVoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI
+03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw=
+-----END CERTIFICATE-----
+
+TWCA Root Certification Authority
+=================================
+-----BEGIN CERTIFICATE-----
+MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJ
+VEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlmaWNh
+dGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMzWhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQG
+EwJUVzESMBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NB
+IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK
+AoIBAQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFEAcK0HMMx
+QhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HHK3XLfJ+utdGdIzdjp9xC
+oi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeXRfwZVzsrb+RH9JlF/h3x+JejiB03HFyP
+4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/zrX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1r
+y+UPizgN7gr8/g+YnzAx3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIB
+BjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkqhkiG
+9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeCMErJk/9q56YAf4lC
+mtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdlsXebQ79NqZp4VKIV66IIArB6nCWlW
+QtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62Dlhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVY
+T0bf+215WfKEIlKuD8z7fDvnaspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocny
+Yh0igzyXxfkZYiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw==
+-----END CERTIFICATE-----
+
+Security Communication RootCA2
+==============================
+-----BEGIN CERTIFICATE-----
+MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDElMCMGA1UEChMc
+U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMeU2VjdXJpdHkgQ29tbXVuaWNh
+dGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoXDTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMC
+SlAxJTAjBgNVBAoTHFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3Vy
+aXR5IENvbW11bmljYXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB
+ANAVOVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGrzbl+dp++
++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVMVAX3NuRFg3sUZdbcDE3R
+3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQhNBqyjoGADdH5H5XTz+L62e4iKrFvlNV
+spHEfbmwhRkGeC7bYRr6hfVKkaHnFtWOojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1K
+EOtOghY6rCcMU/Gt1SSwawNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8
+QIH4D5csOPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEB
+CwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpFcoJxDjrSzG+ntKEj
+u/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXcokgfGT+Ok+vx+hfuzU7jBBJV1uXk
+3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6q
+tnRGEmyR7jTV7JqR50S+kDFy1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29
+mvVXIwAHIRc/SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03
+-----END CERTIFICATE-----
+
+EC-ACC
+======
+-----BEGIN CERTIFICATE-----
+MIIFVjCCBD6gAwIBAgIQ7is969Qh3hSoYqwE893EATANBgkqhkiG9w0BAQUFADCB8zELMAkGA1UE
+BhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2VydGlmaWNhY2lvIChOSUYgUS0w
+ODAxMTc2LUkpMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYD
+VQQLEyxWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAoYykwMzE1MDMGA1UE
+CxMsSmVyYXJxdWlhIEVudGl0YXRzIGRlIENlcnRpZmljYWNpbyBDYXRhbGFuZXMxDzANBgNVBAMT
+BkVDLUFDQzAeFw0wMzAxMDcyMzAwMDBaFw0zMTAxMDcyMjU5NTlaMIHzMQswCQYDVQQGEwJFUzE7
+MDkGA1UEChMyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8gKE5JRiBRLTA4MDExNzYt
+SSkxKDAmBgNVBAsTH1NlcnZlaXMgUHVibGljcyBkZSBDZXJ0aWZpY2FjaW8xNTAzBgNVBAsTLFZl
+Z2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQubmV0L3ZlcmFycmVsIChjKTAzMTUwMwYDVQQLEyxKZXJh
+cnF1aWEgRW50aXRhdHMgZGUgQ2VydGlmaWNhY2lvIENhdGFsYW5lczEPMA0GA1UEAxMGRUMtQUND
+MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsyLHT+KXQpWIR4NA9h0X84NzJB5R85iK
+w5K4/0CQBXCHYMkAqbWUZRkiFRfCQ2xmRJoNBD45b6VLeqpjt4pEndljkYRm4CgPukLjbo73FCeT
+ae6RDqNfDrHrZqJyTxIThmV6PttPB/SnCWDaOkKZx7J/sxaVHMf5NLWUhdWZXqBIoH7nF2W4onW4
+HvPlQn2v7fOKSGRdghST2MDk/7NQcvJ29rNdQlB50JQ+awwAvthrDk4q7D7SzIKiGGUzE3eeml0a
+E9jD2z3Il3rucO2n5nzbcc8tlGLfbdb1OL4/pYUKGbio2Al1QnDE6u/LDsg0qBIimAy4E5S2S+zw
+0JDnJwIDAQABo4HjMIHgMB0GA1UdEQQWMBSBEmVjX2FjY0BjYXRjZXJ0Lm5ldDAPBgNVHRMBAf8E
+BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUoMOLRKo3pUW/l4Ba0fF4opvpXY0wfwYD
+VR0gBHgwdjB0BgsrBgEEAfV4AQMBCjBlMCwGCCsGAQUFBwIBFiBodHRwczovL3d3dy5jYXRjZXJ0
+Lm5ldC92ZXJhcnJlbDA1BggrBgEFBQcCAjApGidWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5l
+dC92ZXJhcnJlbCAwDQYJKoZIhvcNAQEFBQADggEBAKBIW4IB9k1IuDlVNZyAelOZ1Vr/sXE7zDkJ
+lF7W2u++AVtd0x7Y/X1PzaBB4DSTv8vihpw3kpBWHNzrKQXlxJ7HNd+KDM3FIUPpqojlNcAZQmNa
+Al6kSBg6hW/cnbw/nZzBh7h6YQjpdwt/cKt63dmXLGQehb+8dJahw3oS7AwaboMMPOhyRp/7SNVe
+l+axofjk70YllJyJ22k4vuxcDlbHZVHlUIiIv0LVKz3l+bqeLrPK9HOSAgu+TGbrIP65y7WZf+a2
+E/rKS03Z7lNGBjvGTq2TWoF+bCpLagVFjPIhpDGQh2xlnJ2lYJU6Un/10asIbvPuW/mIPX64b24D
+5EI=
+-----END CERTIFICATE-----
+
+Hellenic Academic and Research Institutions RootCA 2011
+=======================================================
+-----BEGIN CERTIFICATE-----
+MIIEMTCCAxmgAwIBAgIBADANBgkqhkiG9w0BAQUFADCBlTELMAkGA1UEBhMCR1IxRDBCBgNVBAoT
+O0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9y
+aXR5MUAwPgYDVQQDEzdIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25z
+IFJvb3RDQSAyMDExMB4XDTExMTIwNjEzNDk1MloXDTMxMTIwMTEzNDk1MlowgZUxCzAJBgNVBAYT
+AkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25z
+IENlcnQuIEF1dGhvcml0eTFAMD4GA1UEAxM3SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNo
+IEluc3RpdHV0aW9ucyBSb290Q0EgMjAxMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB
+AKlTAOMupvaO+mDYLZU++CwqVE7NuYRhlFhPjz2L5EPzdYmNUeTDN9KKiE15HrcS3UN4SoqS5tdI
+1Q+kOilENbgH9mgdVc04UfCMJDGFr4PJfel3r+0ae50X+bOdOFAPplp5kYCvN66m0zH7tSYJnTxa
+71HFK9+WXesyHgLacEnsbgzImjeN9/E2YEsmLIKe0HjzDQ9jpFEw4fkrJxIH2Oq9GGKYsFk3fb7u
+8yBRQlqD75O6aRXxYp2fmTmCobd0LovUxQt7L/DICto9eQqakxylKHJzkUOap9FNhYS5qXSPFEDH
+3N6sQWRstBmbAmNtJGSPRLIl6s5ddAxjMlyNh+UCAwEAAaOBiTCBhjAPBgNVHRMBAf8EBTADAQH/
+MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUppFC/RNhSiOeCKQp5dgTBCPuQSUwRwYDVR0eBEAwPqA8
+MAWCAy5ncjAFggMuZXUwBoIELmVkdTAGggQub3JnMAWBAy5ncjAFgQMuZXUwBoEELmVkdTAGgQQu
+b3JnMA0GCSqGSIb3DQEBBQUAA4IBAQAf73lB4XtuP7KMhjdCSk4cNx6NZrokgclPEg8hwAOXhiVt
+XdMiKahsog2p6z0GW5k6x8zDmjR/qw7IThzh+uTczQ2+vyT+bOdrwg3IBp5OjWEopmr95fZi6hg8
+TqBTnbI6nOulnJEWtk2C4AwFSKls9cz4y51JtPACpf1wA+2KIaWuE4ZJwzNzvoc7dIsXRSZMFpGD
+/md9zU1jZ/rzAxKWeAaNsWftjj++n08C9bMJL/NMh98qy5V8AcysNnq/onN694/BtZqhFLKPM58N
+7yLcZnuEvUUXBj08yrl3NI/K6s8/MT7jiOOASSXIl7WdmplNsDz4SgCbZN2fOUvRJ9e4
+-----END CERTIFICATE-----
+
+Actalis Authentication Root CA
+==============================
+-----BEGIN CERTIFICATE-----
+MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UEBhMCSVQxDjAM
+BgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1ODUyMDk2NzEnMCUGA1UE
+AwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDky
+MjExMjIwMlowazELMAkGA1UEBhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlz
+IFMucC5BLi8wMzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290
+IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNvUTufClrJ
+wkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX4ay8IMKx4INRimlNAJZa
+by/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9KK3giq0itFZljoZUj5NDKd45RnijMCO6
+zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1f
+YVEiVRvjRuPjPdA1YprbrxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2
+oxgkg4YQ51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2Fbe8l
+EfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxeKF+w6D9Fz8+vm2/7
+hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4Fv6MGn8i1zeQf1xcGDXqVdFUNaBr8
+EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbnfpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5
+jF66CyCU3nuDuP/jVo23Eek7jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLY
+iDrIn3hm7YnzezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt
+ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQALe3KHwGCmSUyI
+WOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70jsNjLiNmsGe+b7bAEzlgqqI0
+JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDzWochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKx
+K3JCaKygvU5a2hi/a5iB0P2avl4VSM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+
+Xlff1ANATIGk0k9jpwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC
+4yyXX04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+OkfcvHlXHo
+2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7RK4X9p2jIugErsWx0Hbhz
+lefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btUZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXem
+OR/qnuOf0GZvBeyqdn6/axag67XH/JJULysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9
+vwGYT7JZVEc+NHt4bVaTLnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg==
+-----END CERTIFICATE-----
+
+Trustis FPS Root CA
+===================
+-----BEGIN CERTIFICATE-----
+MIIDZzCCAk+gAwIBAgIQGx+ttiD5JNM2a/fH8YygWTANBgkqhkiG9w0BAQUFADBFMQswCQYDVQQG
+EwJHQjEYMBYGA1UEChMPVHJ1c3RpcyBMaW1pdGVkMRwwGgYDVQQLExNUcnVzdGlzIEZQUyBSb290
+IENBMB4XDTAzMTIyMzEyMTQwNloXDTI0MDEyMTExMzY1NFowRTELMAkGA1UEBhMCR0IxGDAWBgNV
+BAoTD1RydXN0aXMgTGltaXRlZDEcMBoGA1UECxMTVHJ1c3RpcyBGUFMgUm9vdCBDQTCCASIwDQYJ
+KoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVQe547NdDfxIzNjpvto8A2mfRC6qc+gIMPpqdZh8mQ
+RUN+AOqGeSoDvT03mYlmt+WKVoaTnGhLaASMk5MCPjDSNzoiYYkchU59j9WvezX2fihHiTHcDnlk
+H5nSW7r+f2C/revnPDgpai/lkQtV/+xvWNUtyd5MZnGPDNcE2gfmHhjjvSkCqPoc4Vu5g6hBSLwa
+cY3nYuUtsuvffM/bq1rKMfFMIvMFE/eC+XN5DL7XSxzA0RU8k0Fk0ea+IxciAIleH2ulrG6nS4zt
+o3Lmr2NNL4XSFDWaLk6M6jKYKIahkQlBOrTh4/L68MkKokHdqeMDx4gVOxzUGpTXn2RZEm0CAwEA
+AaNTMFEwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBS6+nEleYtXQSUhhgtx67JkDoshZzAd
+BgNVHQ4EFgQUuvpxJXmLV0ElIYYLceuyZA6LIWcwDQYJKoZIhvcNAQEFBQADggEBAH5Y//01GX2c
+GE+esCu8jowU/yyg2kdbw++BLa8F6nRIW/M+TgfHbcWzk88iNVy2P3UnXwmWzaD+vkAMXBJV+JOC
+yinpXj9WV4s4NvdFGkwozZ5BuO1WTISkQMi4sKUraXAEasP41BIy+Q7DsdwyhEQsb8tGD+pmQQ9P
+8Vilpg0ND2HepZ5dfWWhPBfnqFVO76DH7cZEf1T1o+CP8HxVIo8ptoGj4W1OLBuAZ+ytIJ8MYmHV
+l/9D7S3B2l0pKoU/rGXuhg8FjZBf3+6f9L/uHfuY5H+QK4R4EA5sSVPvFVtlRkpdr7r7OnIdzfYl
+iB6XzCGcKQENZetX2fNXlrtIzYE=
+-----END CERTIFICATE-----
+
+Buypass Class 2 Root CA
+=======================
+-----BEGIN CERTIFICATE-----
+MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU
+QnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3MgQ2xhc3MgMiBSb290IENBMB4X
+DTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1owTjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1
+eXBhc3MgQVMtOTgzMTYzMzI3MSAwHgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIw
+DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1
+g1Lr6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPVL4O2fuPn
+9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC911K2GScuVr1QGbNgGE41b
+/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHxMlAQTn/0hpPshNOOvEu/XAFOBz3cFIqU
+CqTqc/sLUegTBxj6DvEr0VQVfTzh97QZQmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeff
+awrbD02TTqigzXsu8lkBarcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgI
+zRFo1clrUs3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLiFRhn
+Bkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRSP/TizPJhk9H9Z2vX
+Uq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN9SG9dKpN6nIDSdvHXx1iY8f93ZHs
+M+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxPAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD
+VR0OBBYEFMmAd+BikoL1RpzzuvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsF
+AAOCAgEAU18h9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s
+A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3tOluwlN5E40EI
+osHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo+fsicdl9sz1Gv7SEr5AcD48S
+aq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYd
+DnkM/crqJIByw5c/8nerQyIKx+u2DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWD
+LfJ6v9r9jv6ly0UsH8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0
+oyLQI+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK75t98biGC
+wWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h3PFaTWwyI0PurKju7koS
+CTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPzY11aWOIv4x3kqdbQCtCev9eBCfHJxyYN
+rJgWVqA=
+-----END CERTIFICATE-----
+
+Buypass Class 3 Root CA
+=======================
+-----BEGIN CERTIFICATE-----
+MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU
+QnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3MgQ2xhc3MgMyBSb290IENBMB4X
+DTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFowTjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1
+eXBhc3MgQVMtOTgzMTYzMzI3MSAwHgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIw
+DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRH
+sJ8YZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3EN3coTRiR
+5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9tznDDgFHmV0ST9tD+leh
+7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX0DJq1l1sDPGzbjniazEuOQAnFN44wOwZ
+ZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH
+2xc519woe2v1n/MuwU8XKhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV
+/afmiSTYzIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvSO1UQ
+RwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D34xFMFbG02SrZvPA
+Xpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgPK9Dx2hzLabjKSWJtyNBjYt1gD1iq
+j6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD
+VR0OBBYEFEe4zf/lb+74suwvTg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsF
+AAOCAgEAACAjQTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV
+cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXSIGrs/CIBKM+G
+uIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2HJLw5QY33KbmkJs4j1xrG0aG
+Q0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsaO5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8
+ZORK15FTAaggiG6cX0S5y2CBNOxv033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2
+KSb12tjE8nVhz36udmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz
+6MkEkbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg413OEMXbug
+UZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvDu79leNKGef9JOxqDDPDe
+eOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq4/g7u9xN12TyUb7mqqta6THuBrxzvxNi
+Cp/HuZc=
+-----END CERTIFICATE-----
+
+T-TeleSec GlobalRoot Class 3
+============================
+-----BEGIN CERTIFICATE-----
+MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoM
+IlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBU
+cnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgx
+MDAxMTAyOTU2WhcNMzMxMDAxMjM1OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lz
+dGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBD
+ZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0GCSqGSIb3
+DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN8ELg63iIVl6bmlQdTQyK
+9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/RLyTPWGrTs0NvvAgJ1gORH8EGoel15YU
+NpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZF
+iP0Zf3WHHx+xGwpzJFu5ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W
+0eDrXltMEnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGjQjBA
+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1A/d2O2GCahKqGFPr
+AyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOyWL6ukK2YJ5f+AbGwUgC4TeQbIXQb
+fsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzT
+ucpH9sry9uetuUg/vBa3wW306gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7h
+P0HHRwA11fXT91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml
+e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4pTpPDpFQUWw==
+-----END CERTIFICATE-----
+
+EE Certification Centre Root CA
+===============================
+-----BEGIN CERTIFICATE-----
+MIIEAzCCAuugAwIBAgIQVID5oHPtPwBMyonY43HmSjANBgkqhkiG9w0BAQUFADB1MQswCQYDVQQG
+EwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEoMCYGA1UEAwwfRUUgQ2Vy
+dGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMCIYDzIw
+MTAxMDMwMTAxMDMwWhgPMjAzMDEyMTcyMzU5NTlaMHUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlB
+UyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMSgwJgYDVQQDDB9FRSBDZXJ0aWZpY2F0aW9uIENlbnRy
+ZSBSb290IENBMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwggEiMA0GCSqGSIb3DQEBAQUAA4IB
+DwAwggEKAoIBAQDIIMDs4MVLqwd4lfNE7vsLDP90jmG7sWLqI9iroWUyeuuOF0+W2Ap7kaJjbMeM
+TC55v6kF/GlclY1i+blw7cNRfdCT5mzrMEvhvH2/UpvObntl8jixwKIy72KyaOBhU8E2lf/slLo2
+rpwcpzIP5Xy0xm90/XsY6KxX7QYgSzIwWFv9zajmofxwvI6Sc9uXp3whrj3B9UiHbCe9nyV0gVWw
+93X2PaRka9ZP585ArQ/dMtO8ihJTmMmJ+xAdTX7Nfh9WDSFwhfYggx/2uh8Ej+p3iDXE/+pOoYtN
+P2MbRMNE1CV2yreN1x5KZmTNXMWcg+HCCIia7E6j8T4cLNlsHaFLAgMBAAGjgYowgYcwDwYDVR0T
+AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBLyWj7qVhy/zQas8fElyalL1BSZ
+MEUGA1UdJQQ+MDwGCCsGAQUFBwMCBggrBgEFBQcDAQYIKwYBBQUHAwMGCCsGAQUFBwMEBggrBgEF
+BQcDCAYIKwYBBQUHAwkwDQYJKoZIhvcNAQEFBQADggEBAHv25MANqhlHt01Xo/6tu7Fq1Q+e2+Rj
+xY6hUFaTlrg4wCQiZrxTFGGVv9DHKpY5P30osxBAIWrEr7BSdxjhlthWXePdNl4dp1BUoMUq5KqM
+lIpPnTX/dqQGE5Gion0ARD9V04I8GtVbvFZMIi5GQ4okQC3zErg7cBqklrkar4dBGmoYDQZPxz5u
+uSlNDUmJEYcyW+ZLBMjkXOZ0c5RdFpgTlf7727FE5TpwrDdr5rMzcijJs1eg9gIWiAYLtqZLICjU
+3j2LrTcFU3T+bsy8QxdxXvnFzBqpYe73dgzzcvRyrc9yAjYHR8/vGVCJYMzpJJUPwssd8m92kMfM
+dcGWxZ0=
+-----END CERTIFICATE-----
+
+D-TRUST Root Class 3 CA 2 2009
+==============================
+-----BEGIN CERTIFICATE-----
+MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQK
+DAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTAe
+Fw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NThaME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxE
+LVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIw
+DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOAD
+ER03UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42tSHKXzlA
+BF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9RySPocq60vFYJfxLLHLGv
+KZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsMlFqVlNpQmvH/pStmMaTJOKDfHR+4CS7z
+p+hnUquVH+BGPtikw8paxTGA6Eian5Rp/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUC
+AwEAAaOCARowggEWMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ
+4PGEMA4GA1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVjdG9y
+eS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUyMENBJTIwMiUyMDIw
+MDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRlcmV2b2NhdGlvbmxpc3QwQ6BBoD+G
+PWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3JsL2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAw
+OS5jcmwwDQYJKoZIhvcNAQELBQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm
+2H6NMLVwMeniacfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0
+o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4KzCUqNQT4YJEV
+dT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8PIWmawomDeCTmGCufsYkl4ph
+X5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3YJohw1+qRzT65ysCQblrGXnRl11z+o+I=
+-----END CERTIFICATE-----
+
+D-TRUST Root Class 3 CA 2 EV 2009
+=================================
+-----BEGIN CERTIFICATE-----
+MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQK
+DAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAw
+OTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUwNDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQK
+DAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAw
+OTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfS
+egpnljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM03TP1YtHh
+zRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6ZqQTMFexgaDbtCHu39b+T
+7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lRp75mpoo6Kr3HGrHhFPC+Oh25z1uxav60
+sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure35
+11H3a6UCAwEAAaOCASQwggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyv
+cop9NteaHNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFwOi8v
+ZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xhc3MlMjAzJTIwQ0El
+MjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1ERT9jZXJ0aWZpY2F0ZXJldm9jYXRp
+b25saXN0MEagRKBChkBodHRwOi8vd3d3LmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xh
+c3NfM19jYV8yX2V2XzIwMDkuY3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+
+PPoeUSbrh/Yp3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05
+nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNFCSuGdXzfX2lX
+ANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7naxpeG0ILD5EJt/rDiZE4OJudA
+NCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqXKVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVv
+w9y4AyHqnxbxLFS1
+-----END CERTIFICATE-----
+
+CA Disig Root R2
+================
+-----BEGIN CERTIFICATE-----
+MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNVBAYTAlNLMRMw
+EQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMuMRkwFwYDVQQDExBDQSBEaXNp
+ZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQyMDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sx
+EzARBgNVBAcTCkJyYXRpc2xhdmExEzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERp
+c2lnIFJvb3QgUjIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbC
+w3OeNcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNHPWSb6Wia
+xswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3Ix2ymrdMxp7zo5eFm1tL7
+A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbeQTg06ov80egEFGEtQX6sx3dOy1FU+16S
+GBsEWmjGycT6txOgmLcRK7fWV8x8nhfRyyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqV
+g8NTEQxzHQuyRpDRQjrOQG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa
+5Beny912H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJQfYE
+koopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUDi/ZnWejBBhG93c+A
+Ak9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORsnLMOPReisjQS1n6yqEm70XooQL6i
+Fh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNV
+HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5u
+Qu0wDQYJKoZIhvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM
+tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqfGopTpti72TVV
+sRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkblvdhuDvEK7Z4bLQjb/D907Je
+dR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka+elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W8
+1k/BfDxujRNt+3vrMNDcTa/F1balTFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjx
+mHHEt38OFdAlab0inSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01
+utI3gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18DrG5gPcFw0
+sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3OszMOl6W8KjptlwlCFtaOg
+UxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8xL4ysEr3vQCj8KWefshNPZiTEUxnpHikV
+7+ZtsH8tZ/3zbBt1RqPlShfppNcL
+-----END CERTIFICATE-----
+
+ACCVRAIZ1
+=========
+-----BEGIN CERTIFICATE-----
+MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UEAwwJQUNDVlJB
+SVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQswCQYDVQQGEwJFUzAeFw0xMTA1
+MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQBgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwH
+UEtJQUNDVjENMAsGA1UECgwEQUNDVjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4IC
+DwAwggIKAoICAQCbqau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gM
+jmoYHtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWoG2ioPej0
+RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpAlHPrzg5XPAOBOp0KoVdD
+aaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhrIA8wKFSVf+DuzgpmndFALW4ir50awQUZ
+0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDG
+WuzndN9wrqODJerWx5eHk6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs7
+8yM2x/474KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMOm3WR
+5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpacXpkatcnYGMN285J
+9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPluUsXQA+xtrn13k/c4LOsOxFwYIRK
+Q26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYIKwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRw
+Oi8vd3d3LmFjY3YuZXMvZmlsZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEu
+Y3J0MB8GCCsGAQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2
+VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeTVfZW6oHlNsyM
+Hj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIGCCsGAQUFBwICMIIBFB6CARAA
+QQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUAcgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBh
+AO0AegAgAGQAZQAgAGwAYQAgAEEAQwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUA
+YwBuAG8AbABvAGcA7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBj
+AHQAcgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAAQwBQAFMA
+IABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUAczAwBggrBgEFBQcCARYk
+aHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2MuaHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0
+dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRtaW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2
+MV9kZXIuY3JsMA4GA1UdDwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZI
+hvcNAQEFBQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdpD70E
+R9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gUJyCpZET/LtZ1qmxN
+YEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+mAM/EKXMRNt6GGT6d7hmKG9Ww7Y49
+nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepDvV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJ
+TS+xJlsndQAJxGJ3KQhfnlmstn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3
+sCPdK6jT2iWH7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h
+I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szAh1xA2syVP1Xg
+Nce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xFd3+YJ5oyXSrjhO7FmGYvliAd
+3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2HpPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3p
+EfbRD0tVNEYqi4Y7
+-----END CERTIFICATE-----
+
+TWCA Global Root CA
+===================
+-----BEGIN CERTIFICATE-----
+MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcxEjAQBgNVBAoT
+CVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMTVFdDQSBHbG9iYWwgUm9vdCBD
+QTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQK
+EwlUQUlXQU4tQ0ExEDAOBgNVBAsTB1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3Qg
+Q0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2C
+nJfF10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz0ALfUPZV
+r2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfChMBwqoJimFb3u/Rk28OKR
+Q4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbHzIh1HrtsBv+baz4X7GGqcXzGHaL3SekV
+tTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1W
+KKD+u4ZqyPpcC1jcxkt2yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99
+sy2sbZCilaLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYPoA/p
+yJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQABDzfuBSO6N+pjWxn
+kjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcEqYSjMq+u7msXi7Kx/mzhkIyIqJdI
+zshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMC
+AQYwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6g
+cFGn90xHNcgL1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn
+LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WFH6vPNOw/KP4M
+8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNoRI2T9GRwoD2dKAXDOXC4Ynsg
+/eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlg
+lPx4mI88k1HtQJAH32RjJMtOcQWh15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryP
+A9gK8kxkRr05YuWW6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3m
+i4TWnsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5jwa19hAM8
+EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWzaGHQRiapIVJpLesux+t3
+zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmyKwbQBM0=
+-----END CERTIFICATE-----
+
+TeliaSonera Root CA v1
+======================
+-----BEGIN CERTIFICATE-----
+MIIFODCCAyCgAwIBAgIRAJW+FqD3LkbxezmCcvqLzZYwDQYJKoZIhvcNAQEFBQAwNzEUMBIGA1UE
+CgwLVGVsaWFTb25lcmExHzAdBgNVBAMMFlRlbGlhU29uZXJhIFJvb3QgQ0EgdjEwHhcNMDcxMDE4
+MTIwMDUwWhcNMzIxMDE4MTIwMDUwWjA3MRQwEgYDVQQKDAtUZWxpYVNvbmVyYTEfMB0GA1UEAwwW
+VGVsaWFTb25lcmEgUm9vdCBDQSB2MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMK+
+6yfwIaPzaSZVfp3FVRaRXP3vIb9TgHot0pGMYzHw7CTww6XScnwQbfQ3t+XmfHnqjLWCi65ItqwA
+3GV17CpNX8GH9SBlK4GoRz6JI5UwFpB/6FcHSOcZrr9FZ7E3GwYq/t75rH2D+1665I+XZ75Ljo1k
+B1c4VWk0Nj0TSO9P4tNmHqTPGrdeNjPUtAa9GAH9d4RQAEX1jF3oI7x+/jXh7VB7qTCNGdMJjmhn
+Xb88lxhTuylixcpecsHHltTbLaC0H2kD7OriUPEMPPCs81Mt8Bz17Ww5OXOAFshSsCPN4D7c3TxH
+oLs1iuKYaIu+5b9y7tL6pe0S7fyYGKkmdtwoSxAgHNN/Fnct7W+A90m7UwW7XWjH1Mh1Fj+JWov3
+F0fUTPHSiXk+TT2YqGHeOh7S+F4D4MHJHIzTjU3TlTazN19jY5szFPAtJmtTfImMMsJu7D0hADnJ
+oWjiUIMusDor8zagrC/kb2HCUQk5PotTubtn2txTuXZZNp1D5SDgPTJghSJRt8czu90VL6R4pgd7
+gUY2BIbdeTXHlSw7sKMXNeVzH7RcWe/a6hBle3rQf5+ztCo3O3CLm1u5K7fsslESl1MpWtTwEhDc
+TwK7EpIvYtQ/aUN8Ddb8WHUBiJ1YFkveupD/RwGJBmr2X7KQarMCpgKIv7NHfirZ1fpoeDVNAgMB
+AAGjPzA9MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBTwj1k4ALP1j5qW
+DNXr+nuqF+gTEjANBgkqhkiG9w0BAQUFAAOCAgEAvuRcYk4k9AwI//DTDGjkk0kiP0Qnb7tt3oNm
+zqjMDfz1mgbldxSR651Be5kqhOX//CHBXfDkH1e3damhXwIm/9fH907eT/j3HEbAek9ALCI18Bmx
+0GtnLLCo4MBANzX2hFxc469CeP6nyQ1Q6g2EdvZR74NTxnr/DlZJLo961gzmJ1TjTQpgcmLNkQfW
+pb/ImWvtxBnmq0wROMVvMeJuScg/doAmAyYp4Db29iBT4xdwNBedY2gea+zDTYa4EzAvXUYNR0PV
+G6pZDrlcjQZIrXSHX8f8MVRBE+LHIQ6e4B4N4cB7Q4WQxYpYxmUKeFfyxiMPAdkgS94P+5KFdSpc
+c41teyWRyu5FrgZLAMzTsVlQ2jqIOylDRl6XK1TOU2+NSueW+r9xDkKLfP0ooNBIytrEgUy7onOT
+JsjrDNYmiLbAJM+7vVvrdX3pCI6GMyx5dwlppYn8s3CQh3aP0yK7Qs69cwsgJirQmz1wHiRszYd2
+qReWt88NkvuOGKmYSdGe/mBEciG5Ge3C9THxOUiIkCR1VBatzvT4aRRkOfujuLpwQMcnHL/EVlP6
+Y2XQ8xwOFvVrhlhNGNTkDY6lnVuR3HYkUD/GKvvZt5y11ubQ2egZixVxSK236thZiNSQvxaz2ems
+WWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY=
+-----END CERTIFICATE-----
+
+E-Tugra Certification Authority
+===============================
+-----BEGIN CERTIFICATE-----
+MIIGSzCCBDOgAwIBAgIIamg+nFGby1MwDQYJKoZIhvcNAQELBQAwgbIxCzAJBgNVBAYTAlRSMQ8w
+DQYDVQQHDAZBbmthcmExQDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamls
+ZXJpIHZlIEhpem1ldGxlcmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBN
+ZXJrZXppMSgwJgYDVQQDDB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTEzMDMw
+NTEyMDk0OFoXDTIzMDMwMzEyMDk0OFowgbIxCzAJBgNVBAYTAlRSMQ8wDQYDVQQHDAZBbmthcmEx
+QDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhpem1ldGxl
+cmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBNZXJrZXppMSgwJgYDVQQD
+DB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEFAAOCAg8A
+MIICCgKCAgEA4vU/kwVRHoViVF56C/UYB4Oufq9899SKa6VjQzm5S/fDxmSJPZQuVIBSOTkHS0vd
+hQd2h8y/L5VMzH2nPbxHD5hw+IyFHnSOkm0bQNGZDbt1bsipa5rAhDGvykPL6ys06I+XawGb1Q5K
+CKpbknSFQ9OArqGIW66z6l7LFpp3RMih9lRozt6Plyu6W0ACDGQXwLWTzeHxE2bODHnv0ZEoq1+g
+ElIwcxmOj+GMB6LDu0rw6h8VqO4lzKRG+Bsi77MOQ7osJLjFLFzUHPhdZL3Dk14opz8n8Y4e0ypQ
+BaNV2cvnOVPAmJ6MVGKLJrD3fY185MaeZkJVgkfnsliNZvcHfC425lAcP9tDJMW/hkd5s3kc91r0
+E+xs+D/iWR+V7kI+ua2oMoVJl0b+SzGPWsutdEcf6ZG33ygEIqDUD13ieU/qbIWGvaimzuT6w+Gz
+rt48Ue7LE3wBf4QOXVGUnhMMti6lTPk5cDZvlsouDERVxcr6XQKj39ZkjFqzAQqptQpHF//vkUAq
+jqFGOjGY5RH8zLtJVor8udBhmm9lbObDyz51Sf6Pp+KJxWfXnUYTTjF2OySznhFlhqt/7x3U+Lzn
+rFpct1pHXFXOVbQicVtbC/DP3KBhZOqp12gKY6fgDT+gr9Oq0n7vUaDmUStVkhUXU8u3Zg5mTPj5
+dUyQ5xJwx0UCAwEAAaNjMGEwHQYDVR0OBBYEFC7j27JJ0JxUeVz6Jyr+zE7S6E5UMA8GA1UdEwEB
+/wQFMAMBAf8wHwYDVR0jBBgwFoAULuPbsknQnFR5XPonKv7MTtLoTlQwDgYDVR0PAQH/BAQDAgEG
+MA0GCSqGSIb3DQEBCwUAA4ICAQAFNzr0TbdF4kV1JI+2d1LoHNgQk2Xz8lkGpD4eKexd0dCrfOAK
+kEh47U6YA5n+KGCRHTAduGN8qOY1tfrTYXbm1gdLymmasoR6d5NFFxWfJNCYExL/u6Au/U5Mh/jO
+XKqYGwXgAEZKgoClM4so3O0409/lPun++1ndYYRP0lSWE2ETPo+Aab6TR7U1Q9Jauz1c77NCR807
+VRMGsAnb/WP2OogKmW9+4c4bU2pEZiNRCHu8W1Ki/QY3OEBhj0qWuJA3+GbHeJAAFS6LrVE1Uweo
+a2iu+U48BybNCAVwzDk/dr2l02cmAYamU9JgO3xDf1WKvJUawSg5TB9D0pH0clmKuVb8P7Sd2nCc
+dlqMQ1DujjByTd//SffGqWfZbawCEeI6FiWnWAjLb1NBnEg4R2gz0dfHj9R0IdTDBZB6/86WiLEV
+KV0jq9BgoRJP3vQXzTLlyb/IQ639Lo7xr+L0mPoSHyDYwKcMhcWQ9DstliaxLL5Mq+ux0orJ23gT
+Dx4JnW2PAJ8C2sH6H3p6CcRK5ogql5+Ji/03X186zjhZhkuvcQu02PJwT58yE+Owp1fl2tpDy4Q0
+8ijE6m30Ku/Ba3ba+367hTzSU8JNvnHhRdH9I2cNE3X7z2VnIp2usAnRCf8dNL/+I5c30jn6PQ0G
+C7TbO6Orb1wdtn7os4I07QZcJA==
+-----END CERTIFICATE-----
+
+T-TeleSec GlobalRoot Class 2
+============================
+-----BEGIN CERTIFICATE-----
+MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoM
+IlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBU
+cnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgx
+MDAxMTA0MDE0WhcNMzMxMDAxMjM1OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lz
+dGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBD
+ZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0GCSqGSIb3
+DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUdAqSzm1nzHoqvNK38DcLZ
+SBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiCFoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/F
+vudocP05l03Sx5iRUKrERLMjfTlH6VJi1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx970
+2cu+fjOlbpSD8DT6IavqjnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGV
+WOHAD3bZwI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGjQjBA
+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/WSA2AHmgoCJrjNXy
+YdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhyNsZt+U2e+iKo4YFWz827n+qrkRk4
+r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPACuvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNf
+vNoBYimipidx5joifsFvHZVwIEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR
+3p1m0IvVVGb6g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN
+9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlPBSeOE6Fuwg==
+-----END CERTIFICATE-----
+
+Atos TrustedRoot 2011
+=====================
+-----BEGIN CERTIFICATE-----
+MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UEAwwVQXRvcyBU
+cnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0xMTA3MDcxNDU4
+MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMMFUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsG
+A1UECgwEQXRvczELMAkGA1UEBhMCREUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCV
+hTuXbyo7LjvPpvMpNb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr
+54rMVD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+SZFhyBH+
+DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ4J7sVaE3IqKHBAUsR320
+HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0Lcp2AMBYHlT8oDv3FdU9T1nSatCQujgKR
+z3bFmx5VdJx4IbHwLfELn8LVlhgf8FQieowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7R
+l+lwrrw7GWzbITAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZ
+bNshMBgGA1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEB
+CwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8jvZfza1zv7v1Apt+h
+k6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kPDpFrdRbhIfzYJsdHt6bPWHJxfrrh
+TZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pcmaHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a9
+61qn8FYiqTxlVMYVqL2Gns2Dlmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G
+3mB/ufNPRJLvKrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed
+-----END CERTIFICATE-----
+
+QuoVadis Root CA 1 G3
+=====================
+-----BEGIN CERTIFICATE-----
+MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQELBQAwSDELMAkG
+A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv
+b3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJN
+MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEg
+RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakE
+PBtVwedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWerNrwU8lm
+PNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF34168Xfuw6cwI2H44g4hWf6
+Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh4Pw5qlPafX7PGglTvF0FBM+hSo+LdoIN
+ofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXpUhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/l
+g6AnhF4EwfWQvTA9xO+oabw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV
+7qJZjqlc3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/GKubX
+9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSthfbZxbGL0eUQMk1f
+iyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KOTk0k+17kBL5yG6YnLUlamXrXXAkg
+t3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOtzCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTAD
+AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZI
+hvcNAQELBQADggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC
+MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2cDMT/uFPpiN3
+GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUNqXsCHKnQO18LwIE6PWThv6ct
+Tr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP
++V04ikkwj+3x6xn0dxoxGE1nVGwvb2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh
+3jRJjehZrJ3ydlo28hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fa
+wx/kNSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNjZgKAvQU6
+O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhpq1467HxpvMc7hU6eFbm0
+FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFtnh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOV
+hMJKzRwuJIczYOXD
+-----END CERTIFICATE-----
+
+QuoVadis Root CA 2 G3
+=====================
+-----BEGIN CERTIFICATE-----
+MIIFYDCCA0igAwIBAgIURFc0JFuBiZs18s64KztbpybwdSgwDQYJKoZIhvcNAQELBQAwSDELMAkG
+A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv
+b3QgQ0EgMiBHMzAeFw0xMjAxMTIxODU5MzJaFw00MjAxMTIxODU5MzJaMEgxCzAJBgNVBAYTAkJN
+MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDIg
+RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQChriWyARjcV4g/Ruv5r+LrI3HimtFh
+ZiFfqq8nUeVuGxbULX1QsFN3vXg6YOJkApt8hpvWGo6t/x8Vf9WVHhLL5hSEBMHfNrMWn4rjyduY
+NM7YMxcoRvynyfDStNVNCXJJ+fKH46nafaF9a7I6JaltUkSs+L5u+9ymc5GQYaYDFCDy54ejiK2t
+oIz/pgslUiXnFgHVy7g1gQyjO/Dh4fxaXc6AcW34Sas+O7q414AB+6XrW7PFXmAqMaCvN+ggOp+o
+MiwMzAkd056OXbxMmO7FGmh77FOm6RQ1o9/NgJ8MSPsc9PG/Srj61YxxSscfrf5BmrODXfKEVu+l
+V0POKa2Mq1W/xPtbAd0jIaFYAI7D0GoT7RPjEiuA3GfmlbLNHiJuKvhB1PLKFAeNilUSxmn1uIZo
+L1NesNKqIcGY5jDjZ1XHm26sGahVpkUG0CM62+tlXSoREfA7T8pt9DTEceT/AFr2XK4jYIVz8eQQ
+sSWu1ZK7E8EM4DnatDlXtas1qnIhO4M15zHfeiFuuDIIfR0ykRVKYnLP43ehvNURG3YBZwjgQQvD
+6xVu+KQZ2aKrr+InUlYrAoosFCT5v0ICvybIxo/gbjh9Uy3l7ZizlWNof/k19N+IxWA1ksB8aRxh
+lRbQ694Lrz4EEEVlWFA4r0jyWbYW8jwNkALGcC4BrTwV1wIDAQABo0IwQDAPBgNVHRMBAf8EBTAD
+AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQU7edvdlq/YOxJW8ald7tyFnGbxD0wDQYJKoZI
+hvcNAQELBQADggIBAJHfgD9DCX5xwvfrs4iP4VGyvD11+ShdyLyZm3tdquXK4Qr36LLTn91nMX66
+AarHakE7kNQIXLJgapDwyM4DYvmL7ftuKtwGTTwpD4kWilhMSA/ohGHqPHKmd+RCroijQ1h5fq7K
+pVMNqT1wvSAZYaRsOPxDMuHBR//47PERIjKWnML2W2mWeyAMQ0GaW/ZZGYjeVYg3UQt4XAoeo0L9
+x52ID8DyeAIkVJOviYeIyUqAHerQbj5hLja7NQ4nlv1mNDthcnPxFlxHBlRJAHpYErAK74X9sbgz
+dWqTHBLmYF5vHX/JHyPLhGGfHoJE+V+tYlUkmlKY7VHnoX6XOuYvHxHaU4AshZ6rNRDbIl9qxV6X
+U/IyAgkwo1jwDQHVcsaxfGl7w/U2Rcxhbl5MlMVerugOXou/983g7aEOGzPuVBj+D77vfoRrQ+Nw
+mNtddbINWQeFFSM51vHfqSYP1kjHs6Yi9TM3WpVHn3u6GBVv/9YUZINJ0gpnIdsPNWNgKCLjsZWD
+zYWm3S8P52dSbrsvhXz1SnPnxT7AvSESBT/8twNJAlvIJebiVDj1eYeMHVOyToV7BjjHLPj4sHKN
+JeV3UvQDHEimUF+IIDBu8oJDqz2XhOdT+yHBTw8imoa4WSr2Rz0ZiC3oheGe7IUIarFsNMkd7Egr
+O3jtZsSOeWmD3n+M
+-----END CERTIFICATE-----
+
+QuoVadis Root CA 3 G3
+=====================
+-----BEGIN CERTIFICATE-----
+MIIFYDCCA0igAwIBAgIULvWbAiin23r/1aOp7r0DoM8Sah0wDQYJKoZIhvcNAQELBQAwSDELMAkG
+A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv
+b3QgQ0EgMyBHMzAeFw0xMjAxMTIyMDI2MzJaFw00MjAxMTIyMDI2MzJaMEgxCzAJBgNVBAYTAkJN
+MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDMg
+RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCzyw4QZ47qFJenMioKVjZ/aEzHs286
+IxSR/xl/pcqs7rN2nXrpixurazHb+gtTTK/FpRp5PIpM/6zfJd5O2YIyC0TeytuMrKNuFoM7pmRL
+Mon7FhY4futD4tN0SsJiCnMK3UmzV9KwCoWdcTzeo8vAMvMBOSBDGzXRU7Ox7sWTaYI+FrUoRqHe
+6okJ7UO4BUaKhvVZR74bbwEhELn9qdIoyhA5CcoTNs+cra1AdHkrAj80//ogaX3T7mH1urPnMNA3
+I4ZyYUUpSFlob3emLoG+B01vr87ERRORFHAGjx+f+IdpsQ7vw4kZ6+ocYfx6bIrc1gMLnia6Et3U
+VDmrJqMz6nWB2i3ND0/kA9HvFZcba5DFApCTZgIhsUfei5pKgLlVj7WiL8DWM2fafsSntARE60f7
+5li59wzweyuxwHApw0BiLTtIadwjPEjrewl5qW3aqDCYz4ByA4imW0aucnl8CAMhZa634RylsSqi
+Md5mBPfAdOhx3v89WcyWJhKLhZVXGqtrdQtEPREoPHtht+KPZ0/l7DxMYIBpVzgeAVuNVejH38DM
+dyM0SXV89pgR6y3e7UEuFAUCf+D+IOs15xGsIs5XPd7JMG0QA4XN8f+MFrXBsj6IbGB/kE+V9/Yt
+rQE5BwT6dYB9v0lQ7e/JxHwc64B+27bQ3RP+ydOc17KXqQIDAQABo0IwQDAPBgNVHRMBAf8EBTAD
+AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUxhfQvKjqAkPyGwaZXSuQILnXnOQwDQYJKoZI
+hvcNAQELBQADggIBADRh2Va1EodVTd2jNTFGu6QHcrxfYWLopfsLN7E8trP6KZ1/AvWkyaiTt3px
+KGmPc+FSkNrVvjrlt3ZqVoAh313m6Tqe5T72omnHKgqwGEfcIHB9UqM+WXzBusnIFUBhynLWcKzS
+t/Ac5IYp8M7vaGPQtSCKFWGafoaYtMnCdvvMujAWzKNhxnQT5WvvoxXqA/4Ti2Tk08HS6IT7SdEQ
+TXlm66r99I0xHnAUrdzeZxNMgRVhvLfZkXdxGYFgu/BYpbWcC/ePIlUnwEsBbTuZDdQdm2NnL9Du
+DcpmvJRPpq3t/O5jrFc/ZSXPsoaP0Aj/uHYUbt7lJ+yreLVTubY/6CD50qi+YUbKh4yE8/nxoGib
+Ih6BJpsQBJFxwAYf3KDTuVan45gtf4Od34wrnDKOMpTwATwiKp9Dwi7DmDkHOHv8XgBCH/MyJnmD
+hPbl8MFREsALHgQjDFSlTC9JxUrRtm5gDWv8a4uFJGS3iQ6rJUdbPM9+Sb3H6QrG2vd+DhcI00iX
+0HGS8A85PjRqHH3Y8iKuu2n0M7SmSFXRDw4m6Oy2Cy2nhTXN/VnIn9HNPlopNLk9hM6xZdRZkZFW
+dSHBd575euFgndOtBBj0fOtek49TSiIp+EgrPk2GrFt/ywaZWWDYWGWVjUTR939+J399roD1B0y2
+PpxxVJkES/1Y+Zj0
+-----END CERTIFICATE-----
+
+DigiCert Assured ID Root G2
+===========================
+-----BEGIN CERTIFICATE-----
+MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBlMQswCQYDVQQG
+EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQw
+IgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgw
+MTE1MTIwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQL
+ExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIw
+ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSAn61UQbVH
+35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4HteccbiJVMWWXvdMX0h5i89vq
+bFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9HpEgjAALAcKxHad3A2m67OeYfcgnDmCXRw
+VWmvo2ifv922ebPynXApVfSr/5Vh88lAbx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OP
+YLfykqGxvYmJHzDNw6YuYjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+Rn
+lTGNAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBTO
+w0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPIQW5pJ6d1Ee88hjZv
+0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I0jJmwYrA8y8678Dj1JGG0VDjA9tz
+d29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4GnilmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAW
+hsI6yLETcDbYz+70CjTVW0z9B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0M
+jomZmWzwPDCvON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo
+IhNzbM8m9Yop5w==
+-----END CERTIFICATE-----
+
+DigiCert Assured ID Root G3
+===========================
+-----BEGIN CERTIFICATE-----
+MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV
+UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYD
+VQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1
+MTIwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
+d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQ
+BgcqhkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJfZn4f5dwb
+RXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17QRSAPWXYQ1qAk8C3eNvJs
+KTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgF
+UaFNN6KDec6NHSrkhDAKBggqhkjOPQQDAwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5Fy
+YZ5eEJJZVrmDxxDnOOlYJjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy
+1vUhZscv6pZjamVFkpUBtA==
+-----END CERTIFICATE-----
+
+DigiCert Global Root G2
+=======================
+-----BEGIN CERTIFICATE-----
+MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG
+EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw
+HgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx
+MjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3
+dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq
+hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ
+kTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO
+3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV
+BJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM
+UNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB
+o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu
+5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr
+F9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U
+WTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH
+QRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/
+iyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl
+MrY=
+-----END CERTIFICATE-----
+
+DigiCert Global Root G3
+=======================
+-----BEGIN CERTIFICATE-----
+MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV
+UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD
+VQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw
+MDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k
+aWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C
+AQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O
+YwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP
+BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp
+Yim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y
+3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34
+VOKa5Vt8sycX
+-----END CERTIFICATE-----
+
+DigiCert Trusted Root G4
+========================
+-----BEGIN CERTIFICATE-----
+MIIFkDCCA3igAwIBAgIQBZsbV56OITLiOQe9p3d1XDANBgkqhkiG9w0BAQwFADBiMQswCQYDVQQG
+EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSEw
+HwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1
+MTIwMDAwWjBiMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
+d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0G
+CSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3yithZwuEp
+pz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1Ifxp4VpX6+n6lXFllVcq9o
+k3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDVySAdYyktzuxeTsiT+CFhmzTrBcZe7Fsa
+vOvJz82sNEBfsXpm7nfISKhmV1efVFiODCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGY
+QJB5w3jHtrHEtWoYOAMQjdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6
+MUSaM0C/CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCiEhtm
+mnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADMfRyVw4/3IbKyEbe7
+f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QYuKZ3AeEPlAwhHbJUKSWJbOUOUlFH
+dL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXKchYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8
+oR7FwI+isX4KJpn15GkvmB0t9dmpsh3lGwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud
+DwEB/wQEAwIBhjAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wDQYJKoZIhvcNAQEMBQAD
+ggIBALth2X2pbL4XxJEbw6GiAI3jZGgPVs93rnD5/ZpKmbnJeFwMDF/k5hQpVgs2SV1EY+CtnJYY
+ZhsjDT156W1r1lT40jzBQ0CuHVD1UvyQO7uYmWlrx8GnqGikJ9yd+SeuMIW59mdNOj6PWTkiU0Tr
+yF0Dyu1Qen1iIQqAyHNm0aAFYF/opbSnr6j3bTWcfFqK1qI4mfN4i/RN0iAL3gTujJtHgXINwBQy
+7zBZLq7gcfJW5GqXb5JQbZaNaHqasjYUegbyJLkJEVDXCLG4iXqEI2FCKeWjzaIgQdfRnGTZ6iah
+ixTXTBmyUEFxPT9NcCOGDErcgdLMMpSEDQgJlxxPwO5rIHQw0uA5NBCFIRUBCOhVMt5xSdkoF1BN
+5r5N0XWs0Mr7QbhDparTwwVETyw2m+L64kW4I1NsBm9nVX9GtUw/bihaeSbSpKhil9Ie4u1Ki7wb
+/UdKDd9nZn6yW0HQO+T0O/QEY+nvwlQAUaCKKsnOeMzV6ocEGLPOr0mIr/OSmbaz5mEP0oUA51Aa
+5BuVnRmhuZyxm7EAHu/QD09CbMkKvO5D+jpxpchNJqU1/YldvIViHTLSoCtU7ZpXwdv6EM8Zt4tK
+G48BtieVU+i2iW1bvGjUI+iLUaJW+fCmgKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP
+82Z+
+-----END CERTIFICATE-----
+
+COMODO RSA Certification Authority
+==================================
+-----BEGIN CERTIFICATE-----
+MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCBhTELMAkGA1UE
+BhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgG
+A1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlv
+biBBdXRob3JpdHkwHhcNMTAwMTE5MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMC
+R0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UE
+ChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBB
+dXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR6FSS0gpWsawNJN3Fz0Rn
+dJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8Xpz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZ
+FGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+
+5eNu/Nio5JIk2kNrYrhV/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pG
+x8cgoLEfZd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z+pUX
+2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7wqP/0uK3pN/u6uPQL
+OvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZahSL0896+1DSJMwBGB7FY79tOi4lu3
+sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVICu9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+C
+GCe01a60y1Dma/RMhnEw6abfFobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5
+WdYgGq/yapiqcrxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E
+FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8w
+DQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvlwFTPoCWOAvn9sKIN9SCYPBMt
+rFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+
+nq6PK7o9mfjYcwlYRm6mnPTXJ9OV2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSg
+tZx8jb8uk2IntznaFxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwW
+sRqZCuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiKboHGhfKp
+pC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmckejkk9u+UJueBPSZI9FoJA
+zMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yLS0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHq
+ZJx64SIDqZxubw5lT2yHh17zbqD5daWbQOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk52
+7RH89elWsn2/x20Kk4yl0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7I
+LaZRfyHBNVOFBkpdn627G190
+-----END CERTIFICATE-----
+
+USERTrust RSA Certification Authority
+=====================================
+-----BEGIN CERTIFICATE-----
+MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCBiDELMAkGA1UE
+BhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQK
+ExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNh
+dGlvbiBBdXRob3JpdHkwHhcNMTAwMjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UE
+BhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQK
+ExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNh
+dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCAEmUXNg7D2wiz
+0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2j
+Y0K2dvKpOyuR+OJv0OwWIJAJPuLodMkYtJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFn
+RghRy4YUVD+8M/5+bJz/Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O
++T23LLb2VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT79uq
+/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6c0Plfg6lZrEpfDKE
+Y1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmTYo61Zs8liM2EuLE/pDkP2QKe6xJM
+lXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97lc6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8
+yexDJtC/QV9AqURE9JnnV4eeUB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+
+eLf8ZxXhyVeEHg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd
+BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF
+MAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPFUp/L+M+ZBn8b2kMVn54CVVeW
+FPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KOVWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ
+7l8wXEskEVX/JJpuXior7gtNn3/3ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQ
+Eg9zKC7F4iRO/Fjs8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM
+8WcRiQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYzeSf7dNXGi
+FSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZXHlKYC6SQK5MNyosycdi
+yA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9c
+J2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRBVXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGw
+sAvgnEzDHNb842m1R0aBL6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gx
+Q+6IHdfGjjxDah2nGN59PRbxYvnKkKj9
+-----END CERTIFICATE-----
+
+USERTrust ECC Certification Authority
+=====================================
+-----BEGIN CERTIFICATE-----
+MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDELMAkGA1UEBhMC
+VVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU
+aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlv
+biBBdXRob3JpdHkwHhcNMTAwMjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMC
+VVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU
+aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlv
+biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqfloI+d61SRvU8Za2EurxtW2
+0eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinngo4N+LZfQYcTxmdwlkWOrfzCjtHDix6Ez
+nPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0GA1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNV
+HQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBB
+HU6+4WMBzzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbWRNZu
+9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg=
+-----END CERTIFICATE-----
+
+GlobalSign ECC Root CA - R4
+===========================
+-----BEGIN CERTIFICATE-----
+MIIB4TCCAYegAwIBAgIRKjikHJYKBN5CsiilC+g0mAIwCgYIKoZIzj0EAwIwUDEkMCIGA1UECxMb
+R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD
+EwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoXDTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMb
+R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD
+EwpHbG9iYWxTaWduMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEuMZ5049sJQ6fLjkZHAOkrprl
+OQcJFspjsbmG+IpXwVfOQvpzofdlQv8ewQCybnMO/8ch5RikqtlxP6jUuc6MHaNCMEAwDgYDVR0P
+AQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFFSwe61FuOJAf/sKbvu+M8k8o4TV
+MAoGCCqGSM49BAMCA0gAMEUCIQDckqGgE6bPA7DmxCGXkPoUVy0D7O48027KqGx2vKLeuwIgJ6iF
+JzWbVsaj8kfSt24bAgAXqmemFZHe+pTsewv4n4Q=
+-----END CERTIFICATE-----
+
+GlobalSign ECC Root CA - R5
+===========================
+-----BEGIN CERTIFICATE-----
+MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEkMCIGA1UECxMb
+R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD
+EwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoXDTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMb
+R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD
+EwpHbG9iYWxTaWduMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6
+SFkc8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8kehOvRnkmS
+h5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAd
+BgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYIKoZIzj0EAwMDaAAwZQIxAOVpEslu28Yx
+uglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7
+yFz9SO8NdCKoCOJuxUnOxwy8p2Fp8fc74SrL+SvzZpA3
+-----END CERTIFICATE-----
+
+Staat der Nederlanden Root CA - G3
+==================================
+-----BEGIN CERTIFICATE-----
+MIIFdDCCA1ygAwIBAgIEAJiiOTANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJOTDEeMBwGA1UE
+CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFhdCBkZXIgTmVkZXJsYW5kZW4g
+Um9vdCBDQSAtIEczMB4XDTEzMTExNDExMjg0MloXDTI4MTExMzIzMDAwMFowWjELMAkGA1UEBhMC
+TkwxHjAcBgNVBAoMFVN0YWF0IGRlciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5l
+ZGVybGFuZGVuIFJvb3QgQ0EgLSBHMzCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL4y
+olQPcPssXFnrbMSkUeiFKrPMSjTysF/zDsccPVMeiAho2G89rcKezIJnByeHaHE6n3WWIkYFsO2t
+x1ueKt6c/DrGlaf1F2cY5y9JCAxcz+bMNO14+1Cx3Gsy8KL+tjzk7FqXxz8ecAgwoNzFs21v0IJy
+EavSgWhZghe3eJJg+szeP4TrjTgzkApyI/o1zCZxMdFyKJLZWyNtZrVtB0LrpjPOktvA9mxjeM3K
+Tj215VKb8b475lRgsGYeCasH/lSJEULR9yS6YHgamPfJEf0WwTUaVHXvQ9Plrk7O53vDxk5hUUur
+mkVLoR9BvUhTFXFkC4az5S6+zqQbwSmEorXLCCN2QyIkHxcE1G6cxvx/K2Ya7Irl1s9N9WMJtxU5
+1nus6+N86U78dULI7ViVDAZCopz35HCz33JvWjdAidiFpNfxC95DGdRKWCyMijmev4SH8RY7Ngzp
+07TKbBlBUgmhHbBqv4LvcFEhMtwFdozL92TkA1CvjJFnq8Xy7ljY3r735zHPbMk7ccHViLVlvMDo
+FxcHErVc0qsgk7TmgoNwNsXNo42ti+yjwUOH5kPiNL6VizXtBznaqB16nzaeErAMZRKQFWDZJkBE
+41ZgpRDUajz9QdwOWke275dhdU/Z/seyHdTtXUmzqWrLZoQT1Vyg3N9udwbRcXXIV2+vD3dbAgMB
+AAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRUrfrHkleu
+yjWcLhL75LpdINyUVzANBgkqhkiG9w0BAQsFAAOCAgEAMJmdBTLIXg47mAE6iqTnB/d6+Oea31BD
+U5cqPco8R5gu4RV78ZLzYdqQJRZlwJ9UXQ4DO1t3ApyEtg2YXzTdO2PCwyiBwpwpLiniyMMB8jPq
+KqrMCQj3ZWfGzd/TtiunvczRDnBfuCPRy5FOCvTIeuXZYzbB1N/8Ipf3YF3qKS9Ysr1YvY2WTxB1
+v0h7PVGHoTx0IsL8B3+A3MSs/mrBcDCw6Y5p4ixpgZQJut3+TcCDjJRYwEYgr5wfAvg1VUkvRtTA
+8KCWAg8zxXHzniN9lLf9OtMJgwYh/WA9rjLA0u6NpvDntIJ8CsxwyXmA+P5M9zWEGYox+wrZ13+b
+8KKaa8MFSu1BYBQw0aoRQm7TIwIEC8Zl3d1Sd9qBa7Ko+gE4uZbqKmxnl4mUnrzhVNXkanjvSr0r
+mj1AfsbAddJu+2gw7OyLnflJNZoaLNmzlTnVHpL3prllL+U9bTpITAjc5CgSKL59NVzq4BZ+Extq
+1z7XnvwtdbLBFNUjA9tbbws+eC8N3jONFrdI54OagQ97wUNNVQQXOEpR1VmiiXTTn74eS9fGbbeI
+JG9gkaSChVtWQbzQRKtqE77RLFi3EjNYsjdj3BP1lB0/QFH1T/U67cjF68IeHRaVesd+QnGTbksV
+tzDfqu1XhUisHWrdOWnk4Xl4vs4Fv6EM94B7IWcnMFk=
+-----END CERTIFICATE-----
+
+Staat der Nederlanden EV Root CA
+================================
+-----BEGIN CERTIFICATE-----
+MIIFcDCCA1igAwIBAgIEAJiWjTANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJOTDEeMBwGA1UE
+CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSkwJwYDVQQDDCBTdGFhdCBkZXIgTmVkZXJsYW5kZW4g
+RVYgUm9vdCBDQTAeFw0xMDEyMDgxMTE5MjlaFw0yMjEyMDgxMTEwMjhaMFgxCzAJBgNVBAYTAk5M
+MR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xKTAnBgNVBAMMIFN0YWF0IGRlciBOZWRl
+cmxhbmRlbiBFViBSb290IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA48d+ifkk
+SzrSM4M1LGns3Amk41GoJSt5uAg94JG6hIXGhaTK5skuU6TJJB79VWZxXSzFYGgEt9nCUiY4iKTW
+O0Cmws0/zZiTs1QUWJZV1VD+hq2kY39ch/aO5ieSZxeSAgMs3NZmdO3dZ//BYY1jTw+bbRcwJu+r
+0h8QoPnFfxZpgQNH7R5ojXKhTbImxrpsX23Wr9GxE46prfNeaXUmGD5BKyF/7otdBwadQ8QpCiv8
+Kj6GyzyDOvnJDdrFmeK8eEEzduG/L13lpJhQDBXd4Pqcfzho0LKmeqfRMb1+ilgnQ7O6M5HTp5gV
+XJrm0w912fxBmJc+qiXbj5IusHsMX/FjqTf5m3VpTCgmJdrV8hJwRVXj33NeN/UhbJCONVrJ0yPr
+08C+eKxCKFhmpUZtcALXEPlLVPxdhkqHz3/KRawRWrUgUY0viEeXOcDPusBCAUCZSCELa6fS/ZbV
+0b5GnUngC6agIk440ME8MLxwjyx1zNDFjFE7PZQIZCZhfbnDZY8UnCHQqv0XcgOPvZuM5l5Tnrmd
+74K74bzickFbIZTTRTeU0d8JOV3nI6qaHcptqAqGhYqCvkIH1vI4gnPah1vlPNOePqc7nvQDs/nx
+fRN0Av+7oeX6AHkcpmZBiFxgV6YuCcS6/ZrPpx9Aw7vMWgpVSzs4dlG4Y4uElBbmVvMCAwEAAaNC
+MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFP6rAJCYniT8qcwa
+ivsnuL8wbqg7MA0GCSqGSIb3DQEBCwUAA4ICAQDPdyxuVr5Os7aEAJSrR8kN0nbHhp8dB9O2tLsI
+eK9p0gtJ3jPFrK3CiAJ9Brc1AsFgyb/E6JTe1NOpEyVa/m6irn0F3H3zbPB+po3u2dfOWBfoqSmu
+c0iH55vKbimhZF8ZE/euBhD/UcabTVUlT5OZEAFTdfETzsemQUHSv4ilf0X8rLiltTMMgsT7B/Zq
+5SWEXwbKwYY5EdtYzXc7LMJMD16a4/CrPmEbUCTCwPTxGfARKbalGAKb12NMcIxHowNDXLldRqAN
+b/9Zjr7dn3LDWyvfjFvO5QxGbJKyCqNMVEIYFRIYvdr8unRu/8G2oGTYqV9Vrp9canaW2HNnh/tN
+f1zuacpzEPuKqf2evTY4SUmH9A4U8OmHuD+nT3pajnnUk+S7aFKErGzp85hwVXIy+TSrK0m1zSBi
+5Dp6Z2Orltxtrpfs/J92VoguZs9btsmksNcFuuEnL5O7Jiqik7Ab846+HUCjuTaPPoIaGl6I6lD4
+WeKDRikL40Rc4ZW2aZCaFG+XroHPaO+Zmr615+F/+PoTRxZMzG0IQOeLeG9QgkRQP2YGiqtDhFZK
+DyAthg710tvSeopLzaXoTvFeJiUBWSOgftL2fiFX1ye8FVdMpEbB4IMeDExNH08GGeL5qPQ6gqGy
+eUN51q1veieQA6TqJIc/2b3Z6fJfUEkc7uzXLg==
+-----END CERTIFICATE-----
+
+IdenTrust Commercial Root CA 1
+==============================
+-----BEGIN CERTIFICATE-----
+MIIFYDCCA0igAwIBAgIQCgFCgAAAAUUjyES1AAAAAjANBgkqhkiG9w0BAQsFADBKMQswCQYDVQQG
+EwJVUzESMBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBS
+b290IENBIDEwHhcNMTQwMTE2MTgxMjIzWhcNMzQwMTE2MTgxMjIzWjBKMQswCQYDVQQGEwJVUzES
+MBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBSb290IENB
+IDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCnUBneP5k91DNG8W9RYYKyqU+PZ4ld
+hNlT3Qwo2dfw/66VQ3KZ+bVdfIrBQuExUHTRgQ18zZshq0PirK1ehm7zCYofWjK9ouuU+ehcCuz/
+mNKvcbO0U59Oh++SvL3sTzIwiEsXXlfEU8L2ApeN2WIrvyQfYo3fw7gpS0l4PJNgiCL8mdo2yMKi
+1CxUAGc1bnO/AljwpN3lsKImesrgNqUZFvX9t++uP0D1bVoE/c40yiTcdCMbXTMTEl3EASX2MN0C
+XZ/g1Ue9tOsbobtJSdifWwLziuQkkORiT0/Br4sOdBeo0XKIanoBScy0RnnGF7HamB4HWfp1IYVl
+3ZBWzvurpWCdxJ35UrCLvYf5jysjCiN2O/cz4ckA82n5S6LgTrx+kzmEB/dEcH7+B1rlsazRGMzy
+NeVJSQjKVsk9+w8YfYs7wRPCTY/JTw436R+hDmrfYi7LNQZReSzIJTj0+kuniVyc0uMNOYZKdHzV
+WYfCP04MXFL0PfdSgvHqo6z9STQaKPNBiDoT7uje/5kdX7rL6B7yuVBgwDHTc+XvvqDtMwt0viAg
+xGds8AgDelWAf0ZOlqf0Hj7h9tgJ4TNkK2PXMl6f+cB7D3hvl7yTmvmcEpB4eoCHFddydJxVdHix
+uuFucAS6T6C6aMN7/zHwcz09lCqxC0EOoP5NiGVreTO01wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMC
+AQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU7UQZwNPwBovupHu+QucmVMiONnYwDQYJKoZI
+hvcNAQELBQADggIBAA2ukDL2pkt8RHYZYR4nKM1eVO8lvOMIkPkp165oCOGUAFjvLi5+U1KMtlwH
+6oi6mYtQlNeCgN9hCQCTrQ0U5s7B8jeUeLBfnLOic7iPBZM4zY0+sLj7wM+x8uwtLRvM7Kqas6pg
+ghstO8OEPVeKlh6cdbjTMM1gCIOQ045U8U1mwF10A0Cj7oV+wh93nAbowacYXVKV7cndJZ5t+qnt
+ozo00Fl72u1Q8zW/7esUTTHHYPTa8Yec4kjixsU3+wYQ+nVZZjFHKdp2mhzpgq7vmrlR94gjmmmV
+YjzlVYA211QC//G5Xc7UI2/YRYRKW2XviQzdFKcgyxilJbQN+QHwotL0AMh0jqEqSI5l2xPE4iUX
+feu+h1sXIFRRk0pTAwvsXcoz7WL9RccvW9xYoIA55vrX/hMUpu09lEpCdNTDd1lzzY9GvlU47/ro
+kTLql1gEIt44w8y8bckzOmoKaT+gyOpyj4xjhiO9bTyWnpXgSUyqorkqG5w2gXjtw+hG4iZZRHUe
+2XWJUc0QhJ1hYMtd+ZciTY6Y5uN/9lu7rs3KSoFrXgvzUeF0K+l+J6fZmUlO+KWA2yUPHGNiiskz
+Z2s8EIPGrd6ozRaOjfAHN3Gf8qv8QfXBi+wAN10J5U6A7/qxXDgGpRtK4dw4LTzcqx+QGtVKnO7R
+cGzM7vRX+Bi6hG6H
+-----END CERTIFICATE-----
+
+IdenTrust Public Sector Root CA 1
+=================================
+-----BEGIN CERTIFICATE-----
+MIIFZjCCA06gAwIBAgIQCgFCgAAAAUUjz0Z8AAAAAjANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQG
+EwJVUzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3Rv
+ciBSb290IENBIDEwHhcNMTQwMTE2MTc1MzMyWhcNMzQwMTE2MTc1MzMyWjBNMQswCQYDVQQGEwJV
+UzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBS
+b290IENBIDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2IpT8pEiv6EdrCvsnduTy
+P4o7ekosMSqMjbCpwzFrqHd2hCa2rIFCDQjrVVi7evi8ZX3yoG2LqEfpYnYeEe4IFNGyRBb06tD6
+Hi9e28tzQa68ALBKK0CyrOE7S8ItneShm+waOh7wCLPQ5CQ1B5+ctMlSbdsHyo+1W/CD80/HLaXI
+rcuVIKQxKFdYWuSNG5qrng0M8gozOSI5Cpcu81N3uURF/YTLNiCBWS2ab21ISGHKTN9T0a9SvESf
+qy9rg3LvdYDaBjMbXcjaY8ZNzaxmMc3R3j6HEDbhuaR672BQssvKplbgN6+rNBM5Jeg5ZuSYeqoS
+mJxZZoY+rfGwyj4GD3vwEUs3oERte8uojHH01bWRNszwFcYr3lEXsZdMUD2xlVl8BX0tIdUAvwFn
+ol57plzy9yLxkA2T26pEUWbMfXYD62qoKjgZl3YNa4ph+bz27nb9cCvdKTz4Ch5bQhyLVi9VGxyh
+LrXHFub4qjySjmm2AcG1hp2JDws4lFTo6tyePSW8Uybt1as5qsVATFSrsrTZ2fjXctscvG29ZV/v
+iDUqZi/u9rNl8DONfJhBaUYPQxxp+pu10GFqzcpL2UyQRqsVWaFHVCkugyhfHMKiq3IXAAaOReyL
+4jM9f9oZRORicsPfIsbyVtTdX5Vy7W1f90gDW/3FKqD2cyOEEBsB5wIDAQABo0IwQDAOBgNVHQ8B
+Af8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU43HgntinQtnbcZFrlJPrw6PRFKMw
+DQYJKoZIhvcNAQELBQADggIBAEf63QqwEZE4rU1d9+UOl1QZgkiHVIyqZJnYWv6IAcVYpZmxI1Qj
+t2odIFflAWJBF9MJ23XLblSQdf4an4EKwt3X9wnQW3IV5B4Jaj0z8yGa5hV+rVHVDRDtfULAj+7A
+mgjVQdZcDiFpboBhDhXAuM/FSRJSzL46zNQuOAXeNf0fb7iAaJg9TaDKQGXSc3z1i9kKlT/YPyNt
+GtEqJBnZhbMX73huqVjRI9PHE+1yJX9dsXNw0H8GlwmEKYBhHfpe/3OsoOOJuBxxFcbeMX8S3OFt
+m6/n6J91eEyrRjuazr8FGF1NFTwWmhlQBJqymm9li1JfPFgEKCXAZmExfrngdbkaqIHWchezxQMx
+NRF4eKLg6TCMf4DfWN88uieW4oA0beOY02QnrEh+KHdcxiVhJfiFDGX6xDIvpZgF5PgLZxYWxoK4
+Mhn5+bl53B/N66+rDt0b20XkeucC4pVd/GnwU2lhlXV5C15V5jgclKlZM57IcXR5f1GJtshquDDI
+ajjDbp7hNxbqBWJMWxJH7ae0s1hWx0nzfxJoCTFx8G34Tkf71oXuxVhAGaQdp/lLQzfcaFpPz+vC
+ZHTetBXZ9FRUGi8c15dxVJCO2SCdUyt/q4/i6jC8UDfv8Ue1fXwsBOxonbRJRBD0ckscZOf85muQ
+3Wl9af0AVqW3rLatt8o+Ae+c
+-----END CERTIFICATE-----
+
+Entrust Root Certification Authority - G2
+=========================================
+-----BEGIN CERTIFICATE-----
+MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMCVVMxFjAUBgNV
+BAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVy
+bXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ug
+b25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIw
+HhcNMDkwNzA3MTcyNTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoT
+DUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMx
+OTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25s
+eTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwggEi
+MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP
+/vaCeb9zYQYKpSfYs1/TRU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXz
+HHfV1IWNcCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hWwcKU
+s/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1U1+cPvQXLOZprE4y
+TGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0jaWvYkxN4FisZDQSA/i2jZRjJKRx
+AgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ6
+0B7vfec7aVHUbI2fkBJmqzANBgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5Z
+iXMRrEPR9RP/jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ
+Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v1fN2D807iDgi
+nWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4RnAuknZoh8/CbCzB428Hch0P+
+vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmHVHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xO
+e4pIb4tF9g==
+-----END CERTIFICATE-----
+
+Entrust Root Certification Authority - EC1
+==========================================
+-----BEGIN CERTIFICATE-----
+MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkGA1UEBhMCVVMx
+FjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVn
+YWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXpl
+ZCB1c2Ugb25seTEzMDEGA1UEAxMqRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5
+IC0gRUMxMB4XDTEyMTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYw
+FAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0L2xlZ2Fs
+LXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhvcml6ZWQg
+dXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAt
+IEVDMTB2MBAGByqGSM49AgEGBSuBBAAiA2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHy
+AsWfoPZb1YsGGYZPUxBtByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef
+9eNi1KlHBz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE
+FLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVCR98crlOZF7ZvHH3h
+vxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nXhTcGtXsI/esni0qU+eH6p44mCOh8
+kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G
+-----END CERTIFICATE-----
+
+CFCA EV ROOT
+============
+-----BEGIN CERTIFICATE-----
+MIIFjTCCA3WgAwIBAgIEGErM1jANBgkqhkiG9w0BAQsFADBWMQswCQYDVQQGEwJDTjEwMC4GA1UE
+CgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQDDAxDRkNB
+IEVWIFJPT1QwHhcNMTIwODA4MDMwNzAxWhcNMjkxMjMxMDMwNzAxWjBWMQswCQYDVQQGEwJDTjEw
+MC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQD
+DAxDRkNBIEVWIFJPT1QwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDXXWvNED8fBVnV
+BU03sQ7smCuOFR36k0sXgiFxEFLXUWRwFsJVaU2OFW2fvwwbwuCjZ9YMrM8irq93VCpLTIpTUnrD
+7i7es3ElweldPe6hL6P3KjzJIx1qqx2hp/Hz7KDVRM8Vz3IvHWOX6Jn5/ZOkVIBMUtRSqy5J35DN
+uF++P96hyk0g1CXohClTt7GIH//62pCfCqktQT+x8Rgp7hZZLDRJGqgG16iI0gNyejLi6mhNbiyW
+ZXvKWfry4t3uMCz7zEasxGPrb382KzRzEpR/38wmnvFyXVBlWY9ps4deMm/DGIq1lY+wejfeWkU7
+xzbh72fROdOXW3NiGUgthxwG+3SYIElz8AXSG7Ggo7cbcNOIabla1jj0Ytwli3i/+Oh+uFzJlU9f
+py25IGvPa931DfSCt/SyZi4QKPaXWnuWFo8BGS1sbn85WAZkgwGDg8NNkt0yxoekN+kWzqotaK8K
+gWU6cMGbrU1tVMoqLUuFG7OA5nBFDWteNfB/O7ic5ARwiRIlk9oKmSJgamNgTnYGmE69g60dWIol
+hdLHZR4tjsbftsbhf4oEIRUpdPA+nJCdDC7xij5aqgwJHsfVPKPtl8MeNPo4+QgO48BdK4PRVmrJ
+tqhUUy54Mmc9gn900PvhtgVguXDbjgv5E1hvcWAQUhC5wUEJ73IfZzF4/5YFjQIDAQABo2MwYTAf
+BgNVHSMEGDAWgBTj/i39KNALtbq2osS/BqoFjJP7LzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB
+/wQEAwIBBjAdBgNVHQ4EFgQU4/4t/SjQC7W6tqLEvwaqBYyT+y8wDQYJKoZIhvcNAQELBQADggIB
+ACXGumvrh8vegjmWPfBEp2uEcwPenStPuiB/vHiyz5ewG5zz13ku9Ui20vsXiObTej/tUxPQ4i9q
+ecsAIyjmHjdXNYmEwnZPNDatZ8POQQaIxffu2Bq41gt/UP+TqhdLjOztUmCypAbqTuv0axn96/Ua
+4CUqmtzHQTb3yHQFhDmVOdYLO6Qn+gjYXB74BGBSESgoA//vU2YApUo0FmZ8/Qmkrp5nGm9BC2sG
+E5uPhnEFtC+NiWYzKXZUmhH4J/qyP5Hgzg0b8zAarb8iXRvTvyUFTeGSGn+ZnzxEk8rUQElsgIfX
+BDrDMlI1Dlb4pd19xIsNER9Tyx6yF7Zod1rg1MvIB671Oi6ON7fQAUtDKXeMOZePglr4UeWJoBjn
+aH9dCi77o0cOPaYjesYBx4/IXr9tgFa+iiS6M+qf4TIRnvHST4D2G0CvOJ4RUHlzEhLN5mydLIhy
+PDCBBpEi6lmt2hkuIsKNuYyH4Ga8cyNfIWRjgEj1oDwYPZTISEEdQLpe/v5WOaHIz16eGWRGENoX
+kbcFgKyLmZJ956LYBws2J+dIeWCKw9cTXPhyQN9Ky8+ZAAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3C
+ekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su
+-----END CERTIFICATE-----
+
+Certinomis - Root CA
+====================
+-----BEGIN CERTIFICATE-----
+MIIFkjCCA3qgAwIBAgIBATANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJGUjETMBEGA1UEChMK
+Q2VydGlub21pczEXMBUGA1UECxMOMDAwMiA0MzM5OTg5MDMxHTAbBgNVBAMTFENlcnRpbm9taXMg
+LSBSb290IENBMB4XDTEzMTAyMTA5MTcxOFoXDTMzMTAyMTA5MTcxOFowWjELMAkGA1UEBhMCRlIx
+EzARBgNVBAoTCkNlcnRpbm9taXMxFzAVBgNVBAsTDjAwMDIgNDMzOTk4OTAzMR0wGwYDVQQDExRD
+ZXJ0aW5vbWlzIC0gUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANTMCQos
+P5L2fxSeC5yaah1AMGT9qt8OHgZbn1CF6s2Nq0Nn3rD6foCWnoR4kkjW4znuzuRZWJflLieY6pOo
+d5tK8O90gC3rMB+12ceAnGInkYjwSond3IjmFPnVAy//ldu9n+ws+hQVWZUKxkd8aRi5pwP5ynap
+z8dvtF4F/u7BUrJ1Mofs7SlmO/NKFoL21prbcpjp3vDFTKWrteoB4owuZH9kb/2jJZOLyKIOSY00
+8B/sWEUuNKqEUL3nskoTuLAPrjhdsKkb5nPJWqHZZkCqqU2mNAKthH6yI8H7KsZn9DS2sJVqM09x
+RLWtwHkziOC/7aOgFLScCbAK42C++PhmiM1b8XcF4LVzbsF9Ri6OSyemzTUK/eVNfaoqoynHWmgE
+6OXWk6RiwsXm9E/G+Z8ajYJJGYrKWUM66A0ywfRMEwNvbqY/kXPLynNvEiCL7sCCeN5LLsJJwx3t
+FvYk9CcbXFcx3FXuqB5vbKziRcxXV4p1VxngtViZSTYxPDMBbRZKzbgqg4SGm/lg0h9tkQPTYKbV
+PZrdd5A9NaSfD171UkRpucC63M9933zZxKyGIjK8e2uR73r4F2iw4lNVYC2vPsKD2NkJK/DAZNuH
+i5HMkesE/Xa0lZrmFAYb1TQdvtj/dBxThZngWVJKYe2InmtJiUZ+IFrZ50rlau7SZRFDAgMBAAGj
+YzBhMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTvkUz1pcMw6C8I
+6tNxIqSSaHh02TAfBgNVHSMEGDAWgBTvkUz1pcMw6C8I6tNxIqSSaHh02TANBgkqhkiG9w0BAQsF
+AAOCAgEAfj1U2iJdGlg+O1QnurrMyOMaauo++RLrVl89UM7g6kgmJs95Vn6RHJk/0KGRHCwPT5iV
+WVO90CLYiF2cN/z7ZMF4jIuaYAnq1fohX9B0ZedQxb8uuQsLrbWwF6YSjNRieOpWauwK0kDDPAUw
+Pk2Ut59KA9N9J0u2/kTO+hkzGm2kQtHdzMjI1xZSg081lLMSVX3l4kLr5JyTCcBMWwerx20RoFAX
+lCOotQqSD7J6wWAsOMwaplv/8gzjqh8c3LigkyfeY+N/IZ865Z764BNqdeuWXGKRlI5nU7aJ+BIJ
+y29SWwNyhlCVCNSNh4YVH5Uk2KRvms6knZtt0rJ2BobGVgjF6wnaNsIbW0G+YSrjcOa4pvi2WsS9
+Iff/ql+hbHY5ZtbqTFXhADObE5hjyW/QASAJN1LnDE8+zbz1X5YnpyACleAu6AdBBR8Vbtaw5Bng
+DwKTACdyxYvRVB9dSsNAl35VpnzBMwQUAR1JIGkLGZOdblgi90AMRgwjY/M50n92Uaf0yKHxDHYi
+I0ZSKS3io0EHVmmY0gUJvGnHWmHNj4FgFU2A3ZDifcRQ8ow7bkrHxuaAKzyBvBGAFhAn1/DNP3nM
+cyrDflOR1m749fPH0FFNjkulW+YZFzvWgQncItzujrnEj1PhZ7szuIgVRs/taTX/dQ1G885x4cVr
+hkIGuUE=
+-----END CERTIFICATE-----
+
+OISTE WISeKey Global Root GB CA
+===============================
+-----BEGIN CERTIFICATE-----
+MIIDtTCCAp2gAwIBAgIQdrEgUnTwhYdGs/gjGvbCwDANBgkqhkiG9w0BAQsFADBtMQswCQYDVQQG
+EwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNl
+ZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwgUm9vdCBHQiBDQTAeFw0xNDEyMDExNTAw
+MzJaFw0zOTEyMDExNTEwMzFaMG0xCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYD
+VQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEds
+b2JhbCBSb290IEdCIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2Be3HEokKtaX
+scriHvt9OO+Y9bI5mE4nuBFde9IllIiCFSZqGzG7qFshISvYD06fWvGxWuR51jIjK+FTzJlFXHtP
+rby/h0oLS5daqPZI7H17Dc0hBt+eFf1Biki3IPShehtX1F1Q/7pn2COZH8g/497/b1t3sWtuuMlk
+9+HKQUYOKXHQuSP8yYFfTvdv37+ErXNku7dCjmn21HYdfp2nuFeKUWdy19SouJVUQHMD9ur06/4o
+Qnc/nSMbsrY9gBQHTC5P99UKFg29ZkM3fiNDecNAhvVMKdqOmq0NpQSHiB6F4+lT1ZvIiwNjeOvg
+GUpuuy9rM2RYk61pv48b74JIxwIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB
+/zAdBgNVHQ4EFgQUNQ/INmNe4qPs+TtmFc5RUuORmj0wEAYJKwYBBAGCNxUBBAMCAQAwDQYJKoZI
+hvcNAQELBQADggEBAEBM+4eymYGQfp3FsLAmzYh7KzKNbrghcViXfa43FK8+5/ea4n32cZiZBKpD
+dHij40lhPnOMTZTg+XHEthYOU3gf1qKHLwI5gSk8rxWYITD+KJAAjNHhy/peyP34EEY7onhCkRd0
+VQreUGdNZtGn//3ZwLWoo4rOZvUPQ82nK1d7Y0Zqqi5S2PTt4W2tKZB4SLrhI6qjiey1q5bAtEui
+HZeeevJuQHHfaPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic
+Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM=
+-----END CERTIFICATE-----
+
+SZAFIR ROOT CA2
+===============
+-----BEGIN CERTIFICATE-----
+MIIDcjCCAlqgAwIBAgIUPopdB+xV0jLVt+O2XwHrLdzk1uQwDQYJKoZIhvcNAQELBQAwUTELMAkG
+A1UEBhMCUEwxKDAmBgNVBAoMH0tyYWpvd2EgSXpiYSBSb3psaWN6ZW5pb3dhIFMuQS4xGDAWBgNV
+BAMMD1NaQUZJUiBST09UIENBMjAeFw0xNTEwMTkwNzQzMzBaFw0zNTEwMTkwNzQzMzBaMFExCzAJ
+BgNVBAYTAlBMMSgwJgYDVQQKDB9LcmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYD
+VQQDDA9TWkFGSVIgUk9PVCBDQTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3vD5Q
+qEvNQLXOYeeWyrSh2gwisPq1e3YAd4wLz32ohswmUeQgPYUM1ljj5/QqGJ3a0a4m7utT3PSQ1hNK
+DJA8w/Ta0o4NkjrcsbH/ON7Dui1fgLkCvUqdGw+0w8LBZwPd3BucPbOw3gAeqDRHu5rr/gsUvTaE
+2g0gv/pby6kWIK05YO4vdbbnl5z5Pv1+TW9NL++IDWr63fE9biCloBK0TXC5ztdyO4mTp4CEHCdJ
+ckm1/zuVnsHMyAHs6A6KCpbns6aH5db5BSsNl0BwPLqsdVqc1U2dAgrSS5tmS0YHF2Wtn2yIANwi
+ieDhZNRnvDF5YTy7ykHNXGoAyDw4jlivAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0P
+AQH/BAQDAgEGMB0GA1UdDgQWBBQuFqlKGLXLzPVvUPMjX/hd56zwyDANBgkqhkiG9w0BAQsFAAOC
+AQEAtXP4A9xZWx126aMqe5Aosk3AM0+qmrHUuOQn/6mWmc5G4G18TKI4pAZw8PRBEew/R40/cof5
+O/2kbytTAOD/OblqBw7rHRz2onKQy4I9EYKL0rufKq8h5mOGnXkZ7/e7DDWQw4rtTw/1zBLZpD67
+oPwglV9PJi8RI4NOdQcPv5vRtB3pEAT+ymCPoky4rc/hkA/NrgrHXXu3UNLUYfrVFdvXn4dRVOul
+4+vJhaAlIDf7js4MNIThPIGyd05DpYhfhmehPea0XGG2Ptv+tyjFogeutcrKjSoS75ftwjCkySp6
++/NNIxuZMzSgLvWpCz/UXeHPhJ/iGcJfitYgHuNztw==
+-----END CERTIFICATE-----
+
+Certum Trusted Network CA 2
+===========================
+-----BEGIN CERTIFICATE-----
+MIIF0jCCA7qgAwIBAgIQIdbQSk8lD8kyN/yqXhKN6TANBgkqhkiG9w0BAQ0FADCBgDELMAkGA1UE
+BhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMuQS4xJzAlBgNVBAsTHkNlcnR1
+bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEkMCIGA1UEAxMbQ2VydHVtIFRydXN0ZWQgTmV0d29y
+ayBDQSAyMCIYDzIwMTExMDA2MDgzOTU2WhgPMjA0NjEwMDYwODM5NTZaMIGAMQswCQYDVQQGEwJQ
+TDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENl
+cnRpZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENB
+IDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC9+Xj45tWADGSdhhuWZGc/IjoedQF9
+7/tcZ4zJzFxrqZHmuULlIEub2pt7uZld2ZuAS9eEQCsn0+i6MLs+CRqnSZXvK0AkwpfHp+6bJe+o
+CgCXhVqqndwpyeI1B+twTUrWwbNWuKFBOJvR+zF/j+Bf4bE/D44WSWDXBo0Y+aomEKsq09DRZ40b
+Rr5HMNUuctHFY9rnY3lEfktjJImGLjQ/KUxSiyqnwOKRKIm5wFv5HdnnJ63/mgKXwcZQkpsCLL2p
+uTRZCr+ESv/f/rOf69me4Jgj7KZrdxYq28ytOxykh9xGc14ZYmhFV+SQgkK7QtbwYeDBoz1mo130
+GO6IyY0XRSmZMnUCMe4pJshrAua1YkV/NxVaI2iJ1D7eTiew8EAMvE0Xy02isx7QBlrd9pPPV3WZ
+9fqGGmd4s7+W/jTcvedSVuWz5XV710GRBdxdaeOVDUO5/IOWOZV7bIBaTxNyxtd9KXpEulKkKtVB
+Rgkg/iKgtlswjbyJDNXXcPiHUv3a76xRLgezTv7QCdpw75j6VuZt27VXS9zlLCUVyJ4ueE742pye
+hizKV/Ma5ciSixqClnrDvFASadgOWkaLOusm+iPJtrCBvkIApPjW/jAux9JG9uWOdf3yzLnQh1vM
+BhBgu4M1t15n3kfsmUjxpKEV/q2MYo45VU85FrmxY53/twIDAQABo0IwQDAPBgNVHRMBAf8EBTAD
+AQH/MB0GA1UdDgQWBBS2oVQ5AsOgP46KvPrU+Bym0ToO/TAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZI
+hvcNAQENBQADggIBAHGlDs7k6b8/ONWJWsQCYftMxRQXLYtPU2sQF/xlhMcQSZDe28cmk4gmb3DW
+Al45oPePq5a1pRNcgRRtDoGCERuKTsZPpd1iHkTfCVn0W3cLN+mLIMb4Ck4uWBzrM9DPhmDJ2vuA
+L55MYIR4PSFk1vtBHxgP58l1cb29XN40hz5BsA72udY/CROWFC/emh1auVbONTqwX3BNXuMp8SMo
+clm2q8KMZiYcdywmdjWLKKdpoPk79SPdhRB0yZADVpHnr7pH1BKXESLjokmUbOe3lEu6LaTaM4tM
+pkT/WjzGHWTYtTHkpjx6qFcL2+1hGsvxznN3Y6SHb0xRONbkX8eftoEq5IVIeVheO/jbAoJnwTnb
+w3RLPTYe+SmTiGhbqEQZIfCn6IENLOiTNrQ3ssqwGyZ6miUfmpqAnksqP/ujmv5zMnHCnsZy4Ypo
+J/HkD7TETKVhk/iXEAcqMCWpuchxuO9ozC1+9eB+D4Kob7a6bINDd82Kkhehnlt4Fj1F4jNy3eFm
+ypnTycUm/Q1oBEauttmbjL4ZvrHG8hnjXALKLNhvSgfZyTXaQHXyxKcZb55CEJh15pWLYLztxRLX
+is7VmFxWlgPF7ncGNf/P5O4/E2Hu29othfDNrp2yGAlFw5Khchf8R7agCyzxxN5DaAhqXzvwdmP7
+zAYspsbiDrW5viSP
+-----END CERTIFICATE-----
+
+Hellenic Academic and Research Institutions RootCA 2015
+=======================================================
+-----BEGIN CERTIFICATE-----
+MIIGCzCCA/OgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBpjELMAkGA1UEBhMCR1IxDzANBgNVBAcT
+BkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0
+aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNVBAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNl
+YXJjaCBJbnN0aXR1dGlvbnMgUm9vdENBIDIwMTUwHhcNMTUwNzA3MTAxMTIxWhcNNDAwNjMwMTAx
+MTIxWjCBpjELMAkGA1UEBhMCR1IxDzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMg
+QWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNV
+BAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgUm9vdENBIDIw
+MTUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDC+Kk/G4n8PDwEXT2QNrCROnk8Zlrv
+bTkBSRq0t89/TSNTt5AA4xMqKKYx8ZEA4yjsriFBzh/a/X0SWwGDD7mwX5nh8hKDgE0GPt+sr+eh
+iGsxr/CL0BgzuNtFajT0AoAkKAoCFZVedioNmToUW/bLy1O8E00BiDeUJRtCvCLYjqOWXjrZMts+
+6PAQZe104S+nfK8nNLspfZu2zwnI5dMK/IhlZXQK3HMcXM1AsRzUtoSMTFDPaI6oWa7CJ06CojXd
+FPQf/7J31Ycvqm59JCfnxssm5uX+Zwdj2EUN3TpZZTlYepKZcj2chF6IIbjV9Cz82XBST3i4vTwr
+i5WY9bPRaM8gFH5MXF/ni+X1NYEZN9cRCLdmvtNKzoNXADrDgfgXy5I2XdGj2HUb4Ysn6npIQf1F
+GQatJ5lOwXBH3bWfgVMS5bGMSF0xQxfjjMZ6Y5ZLKTBOhE5iGV48zpeQpX8B653g+IuJ3SWYPZK2
+fu/Z8VFRfS0myGlZYeCsargqNhEEelC9MoS+L9xy1dcdFkfkR2YgP/SWxa+OAXqlD3pk9Q0Yh9mu
+iNX6hME6wGkoLfINaFGq46V3xqSQDqE3izEjR8EJCOtu93ib14L8hCCZSRm2Ekax+0VVFqmjZayc
+Bw/qa9wfLgZy7IaIEuQt218FL+TwA9MmM+eAws1CoRc0CwIDAQABo0IwQDAPBgNVHRMBAf8EBTAD
+AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUcRVnyMjJvXVdctA4GGqd83EkVAswDQYJKoZI
+hvcNAQELBQADggIBAHW7bVRLqhBYRjTyYtcWNl0IXtVsyIe9tC5G8jH4fOpCtZMWVdyhDBKg2mF+
+D1hYc2Ryx+hFjtyp8iY/xnmMsVMIM4GwVhO+5lFc2JsKT0ucVlMC6U/2DWDqTUJV6HwbISHTGzrM
+d/K4kPFox/la/vot9L/J9UUbzjgQKjeKeaO04wlshYaT/4mWJ3iBj2fjRnRUjtkNaeJK9E10A/+y
+d+2VZ5fkscWrv2oj6NSU4kQoYsRL4vDY4ilrGnB+JGGTe08DMiUNRSQrlrRGar9KC/eaj8GsGsVn
+82800vpzY4zvFrCopEYq+OsS7HK07/grfoxSwIuEVPkvPuNVqNxmsdnhX9izjFk0WaSrT2y7Hxjb
+davYy5LNlDhhDgcGH0tGEPEVvo2FXDtKK4F5D7Rpn0lQl033DlZdwJVqwjbDG2jJ9SrcR5q+ss7F
+Jej6A7na+RZukYT1HCjI/CbM1xyQVqdfbzoEvM14iQuODy+jqk+iGxI9FghAD/FGTNeqewjBCvVt
+J94Cj8rDtSvK6evIIVM4pcw72Hc3MKJP2W/R8kCtQXoXxdZKNYm3QdV8hn9VTYNKpXMgwDqvkPGa
+JI7ZjnHKe7iG2rKPmT4dEw0SEe7Uq/DpFXYC5ODfqiAeW2GFZECpkJcNrVPSWh2HagCXZWK0vm9q
+p/UsQu0yrbYhnr68
+-----END CERTIFICATE-----
+
+Hellenic Academic and Research Institutions ECC RootCA 2015
+===========================================================
+-----BEGIN CERTIFICATE-----
+MIICwzCCAkqgAwIBAgIBADAKBggqhkjOPQQDAjCBqjELMAkGA1UEBhMCR1IxDzANBgNVBAcTBkF0
+aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9u
+cyBDZXJ0LiBBdXRob3JpdHkxRDBCBgNVBAMTO0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJj
+aCBJbnN0aXR1dGlvbnMgRUNDIFJvb3RDQSAyMDE1MB4XDTE1MDcwNzEwMzcxMloXDTQwMDYzMDEw
+MzcxMlowgaoxCzAJBgNVBAYTAkdSMQ8wDQYDVQQHEwZBdGhlbnMxRDBCBgNVBAoTO0hlbGxlbmlj
+IEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9yaXR5MUQwQgYD
+VQQDEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIEVDQyBSb290
+Q0EgMjAxNTB2MBAGByqGSM49AgEGBSuBBAAiA2IABJKgQehLgoRc4vgxEZmGZE4JJS+dQS8KrjVP
+dJWyUWRrjWvmP3CV8AVER6ZyOFB2lQJajq4onvktTpnvLEhvTCUp6NFxW98dwXU3tNf6e3pCnGoK
+Vlp8aQuqgAkkbH7BRqNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0O
+BBYEFLQiC4KZJAEOnLvkDv2/+5cgk5kqMAoGCCqGSM49BAMCA2cAMGQCMGfOFmI4oqxiRaeplSTA
+GiecMjvAwNW6qef4BENThe5SId6d9SWDPp5YSy/XZxMOIQIwBeF1Ad5o7SofTUwJCA3sS61kFyjn
+dc5FZXIhF8siQQ6ME5g4mlRtm8rifOoCWCKR
+-----END CERTIFICATE-----
+
+ISRG Root X1
+============
+-----BEGIN CERTIFICATE-----
+MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAwTzELMAkGA1UE
+BhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2VhcmNoIEdyb3VwMRUwEwYDVQQD
+EwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQG
+EwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMT
+DElTUkcgUm9vdCBYMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54r
+Vygch77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+0TM8ukj1
+3Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6UA5/TR5d8mUgjU+g4rk8K
+b4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sWT8KOEUt+zwvo/7V3LvSye0rgTBIlDHCN
+Aymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyHB5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ
+4Q7e2RCOFvu396j3x+UCB5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf
+1b0SHzUvKBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWnOlFu
+hjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTnjh8BCNAw1FtxNrQH
+usEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbwqHyGO0aoSCqI3Haadr8faqU9GY/r
+OPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CIrU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4G
+A1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY
+9umbbjANBgkqhkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZL
+ubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ3BebYhtF8GaV
+0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KKNFtY2PwByVS5uCbMiogziUwt
+hDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJw
+TdwJx4nLCgdNbOhdjsnvzqvHu7UrTkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nx
+e5AW0wdeRlN8NwdCjNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZA
+JzVcoyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq4RgqsahD
+YVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPAmRGunUHBcnWEvgJBQl9n
+JEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57demyPxgcYxn/eR44/KJ4EBs+lVDR3veyJ
+m+kXQ99b21/+jh5Xos1AnX5iItreGCc=
+-----END CERTIFICATE-----
+
+AC RAIZ FNMT-RCM
+================
+-----BEGIN CERTIFICATE-----
+MIIFgzCCA2ugAwIBAgIPXZONMGc2yAYdGsdUhGkHMA0GCSqGSIb3DQEBCwUAMDsxCzAJBgNVBAYT
+AkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJWiBGTk1ULVJDTTAeFw0wODEw
+MjkxNTU5NTZaFw0zMDAxMDEwMDAwMDBaMDsxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJD
+TTEZMBcGA1UECwwQQUMgUkFJWiBGTk1ULVJDTTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoC
+ggIBALpxgHpMhm5/yBNtwMZ9HACXjywMI7sQmkCpGreHiPibVmr75nuOi5KOpyVdWRHbNi63URcf
+qQgfBBckWKo3Shjf5TnUV/3XwSyRAZHiItQDwFj8d0fsjz50Q7qsNI1NOHZnjrDIbzAzWHFctPVr
+btQBULgTfmxKo0nRIBnuvMApGGWn3v7v3QqQIecaZ5JCEJhfTzC8PhxFtBDXaEAUwED653cXeuYL
+j2VbPNmaUtu1vZ5Gzz3rkQUCwJaydkxNEJY7kvqcfw+Z374jNUUeAlz+taibmSXaXvMiwzn15Cou
+08YfxGyqxRxqAQVKL9LFwag0Jl1mpdICIfkYtwb1TplvqKtMUejPUBjFd8g5CSxJkjKZqLsXF3mw
+WsXmo8RZZUc1g16p6DULmbvkzSDGm0oGObVo/CK67lWMK07q87Hj/LaZmtVC+nFNCM+HHmpxffnT
+tOmlcYF7wk5HlqX2doWjKI/pgG6BU6VtX7hI+cL5NqYuSf+4lsKMB7ObiFj86xsc3i1w4peSMKGJ
+47xVqCfWS+2QrYv6YyVZLag13cqXM7zlzced0ezvXg5KkAYmY6252TUtB7p2ZSysV4999AeU14EC
+ll2jB0nVetBX+RvnU0Z1qrB5QstocQjpYL05ac70r8NWQMetUqIJ5G+GR4of6ygnXYMgrwTJbFaa
+i0b1AgMBAAGjgYMwgYAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE
+FPd9xf3E6Jobd2Sn9R2gzL+HYJptMD4GA1UdIAQ3MDUwMwYEVR0gADArMCkGCCsGAQUFBwIBFh1o
+dHRwOi8vd3d3LmNlcnQuZm5tdC5lcy9kcGNzLzANBgkqhkiG9w0BAQsFAAOCAgEAB5BK3/MjTvDD
+nFFlm5wioooMhfNzKWtN/gHiqQxjAb8EZ6WdmF/9ARP67Jpi6Yb+tmLSbkyU+8B1RXxlDPiyN8+s
+D8+Nb/kZ94/sHvJwnvDKuO+3/3Y3dlv2bojzr2IyIpMNOmqOFGYMLVN0V2Ue1bLdI4E7pWYjJ2cJ
+j+F3qkPNZVEI7VFY/uY5+ctHhKQV8Xa7pO6kO8Rf77IzlhEYt8llvhjho6Tc+hj507wTmzl6NLrT
+Qfv6MooqtyuGC2mDOL7Nii4LcK2NJpLuHvUBKwrZ1pebbuCoGRw6IYsMHkCtA+fdZn71uSANA+iW
++YJF1DngoABd15jmfZ5nc8OaKveri6E6FO80vFIOiZiaBECEHX5FaZNXzuvO+FB8TxxuBEOb+dY7
+Ixjp6o7RTUaN8Tvkasq6+yO3m/qZASlaWFot4/nUbQ4mrcFuNLwy+AwF+mWj2zs3gyLp1txyM/1d
+8iC9djwj2ij3+RvrWWTV3F9yfiD8zYm1kGdNYno/Tq0dwzn+evQoFt9B9kiABdcPUXmsEKvU7ANm
+5mqwujGSQkBqvjrTcuFqN1W8rB2Vt2lh8kORdOag0wokRqEIr9baRRmW1FMdW4R58MD3R++Lj8UG
+rp1MYp3/RgT408m2ECVAdf4WqslKYIYvuu8wd+RU4riEmViAqhOLUTpPSPaLtrM=
+-----END CERTIFICATE-----
+
+Amazon Root CA 1
+================
+-----BEGIN CERTIFICATE-----
+MIIDQTCCAimgAwIBAgITBmyfz5m/jAo54vB4ikPmljZbyjANBgkqhkiG9w0BAQsFADA5MQswCQYD
+VQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMB4XDTE1
+MDUyNjAwMDAwMFoXDTM4MDExNzAwMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpv
+bjEZMBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
+ggEBALJ4gHHKeNXjca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgH
+FzZM9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qwIFAGbHrQ
+gLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6VOujw5H5SNz/0egwLX0t
+dHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L93FcXmn/6pUCyziKrlA4b9v7LWIbxcce
+VOF34GfID5yHI9Y/QCB/IIDEgEw+OyQmjgSubJrIqg0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB
+/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMA0GCSqGSIb3
+DQEBCwUAA4IBAQCY8jdaQZChGsV2USggNiMOruYou6r4lK5IpDB/G/wkjUu0yKGX9rbxenDIU5PM
+CCjjmCXPI6T53iHTfIUJrU6adTrCC2qJeHZERxhlbI1Bjjt/msv0tadQ1wUsN+gDS63pYaACbvXy
+8MWy7Vu33PqUXHeeE6V/Uq2V8viTO96LXFvKWlJbYK8U90vvo/ufQJVtMVT8QtPHRh8jrdkPSHCa
+2XV4cdFyQzR1bldZwgJcJmApzyMZFo6IQ6XU5MsI+yMRQ+hDKXJioaldXgjUkK642M4UwtBV8ob2
+xJNDd2ZhwLnoQdeXeGADbkpyrqXRfboQnoZsG4q5WTP468SQvvG5
+-----END CERTIFICATE-----
+
+Amazon Root CA 2
+================
+-----BEGIN CERTIFICATE-----
+MIIFQTCCAymgAwIBAgITBmyf0pY1hp8KD+WGePhbJruKNzANBgkqhkiG9w0BAQwFADA5MQswCQYD
+VQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAyMB4XDTE1
+MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpv
+bjEZMBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoC
+ggIBAK2Wny2cSkxKgXlRmeyKy2tgURO8TW0G/LAIjd0ZEGrHJgw12MBvIITplLGbhQPDW9tK6Mj4
+kHbZW0/jTOgGNk3Mmqw9DJArktQGGWCsN0R5hYGCrVo34A3MnaZMUnbqQ523BNFQ9lXg1dKmSYXp
+N+nKfq5clU1Imj+uIFptiJXZNLhSGkOQsL9sBbm2eLfq0OQ6PBJTYv9K8nu+NQWpEjTj82R0Yiw9
+AElaKP4yRLuH3WUnAnE72kr3H9rN9yFVkE8P7K6C4Z9r2UXTu/Bfh+08LDmG2j/e7HJV63mjrdvd
+fLC6HM783k81ds8P+HgfajZRRidhW+mez/CiVX18JYpvL7TFz4QuK/0NURBs+18bvBt+xa47mAEx
+kv8LV/SasrlX6avvDXbR8O70zoan4G7ptGmh32n2M8ZpLpcTnqWHsFcQgTfJU7O7f/aS0ZzQGPSS
+btqDT6ZjmUyl+17vIWR6IF9sZIUVyzfpYgwLKhbcAS4y2j5L9Z469hdAlO+ekQiG+r5jqFoz7Mt0
+Q5X5bGlSNscpb/xVA1wf+5+9R+vnSUeVC06JIglJ4PVhHvG/LopyboBZ/1c6+XUyo05f7O0oYtlN
+c/LMgRdg7c3r3NunysV+Ar3yVAhU/bQtCSwXVEqY0VThUWcI0u1ufm8/0i2BWSlmy5A5lREedCf+
+3euvAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSw
+DPBMMPQFWAJI/TPlUq9LhONmUjANBgkqhkiG9w0BAQwFAAOCAgEAqqiAjw54o+Ci1M3m9Zh6O+oA
+A7CXDpO8Wqj2LIxyh6mx/H9z/WNxeKWHWc8w4Q0QshNabYL1auaAn6AFC2jkR2vHat+2/XcycuUY
++gn0oJMsXdKMdYV2ZZAMA3m3MSNjrXiDCYZohMr/+c8mmpJ5581LxedhpxfL86kSk5Nrp+gvU5LE
+YFiwzAJRGFuFjWJZY7attN6a+yb3ACfAXVU3dJnJUH/jWS5E4ywl7uxMMne0nxrpS10gxdr9HIcW
+xkPo1LsmmkVwXqkLN1PiRnsn/eBG8om3zEK2yygmbtmlyTrIQRNg91CMFa6ybRoVGld45pIq2WWQ
+gj9sAq+uEjonljYE1x2igGOpm/HlurR8FLBOybEfdF849lHqm/osohHUqS0nGkWxr7JOcQ3AWEbW
+aQbLU8uz/mtBzUF+fUwPfHJ5elnNXkoOrJupmHN5fLT0zLm4BwyydFy4x2+IoZCn9Kr5v2c69BoV
+Yh63n749sSmvZ6ES8lgQGVMDMBu4Gon2nL2XA46jCfMdiyHxtN/kHNGfZQIG6lzWE7OE76KlXIx3
+KadowGuuQNKotOrN8I1LOJwZmhsoVLiJkO/KdYE+HvJkJMcYr07/R54H9jVlpNMKVv/1F2Rs76gi
+JUmTtt8AF9pYfl3uxRuw0dFfIRDH+fO6AgonB8Xx1sfT4PsJYGw=
+-----END CERTIFICATE-----
+
+Amazon Root CA 3
+================
+-----BEGIN CERTIFICATE-----
+MIIBtjCCAVugAwIBAgITBmyf1XSXNmY/Owua2eiedgPySjAKBggqhkjOPQQDAjA5MQswCQYDVQQG
+EwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAzMB4XDTE1MDUy
+NjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZ
+MBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCmXp8ZB
+f8ANm+gBG1bG8lKlui2yEujSLtf6ycXYqm0fc4E7O5hrOXwzpcVOho6AF2hiRVd9RFgdszflZwjr
+Zt6jQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSrttvXBp43
+rDCGB5Fwx5zEGbF4wDAKBggqhkjOPQQDAgNJADBGAiEA4IWSoxe3jfkrBqWTrBqYaGFy+uGh0Psc
+eGCmQ5nFuMQCIQCcAu/xlJyzlvnrxir4tiz+OpAUFteMYyRIHN8wfdVoOw==
+-----END CERTIFICATE-----
+
+Amazon Root CA 4
+================
+-----BEGIN CERTIFICATE-----
+MIIB8jCCAXigAwIBAgITBmyf18G7EEwpQ+Vxe3ssyBrBDjAKBggqhkjOPQQDAzA5MQswCQYDVQQG
+EwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSA0MB4XDTE1MDUy
+NjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZ
+MBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgNDB2MBAGByqGSM49AgEGBSuBBAAiA2IABNKrijdPo1MN
+/sGKe0uoe0ZLY7Bi9i0b2whxIdIA6GO9mif78DluXeo9pcmBqqNbIJhFXRbb/egQbeOc4OO9X4Ri
+83BkM6DLJC9wuoihKqB1+IGuYgbEgds5bimwHvouXKNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNV
+HQ8BAf8EBAMCAYYwHQYDVR0OBBYEFNPsxzplbszh2naaVvuc84ZtV+WBMAoGCCqGSM49BAMDA2gA
+MGUCMDqLIfG9fhGt0O9Yli/W651+kI0rz2ZVwyzjKKlwCkcO8DdZEv8tmZQoTipPNU0zWgIxAOp1
+AE47xDqUEpHJWEadIRNyp4iciuRMStuW1KyLa2tJElMzrdfkviT8tQp21KW8EA==
+-----END CERTIFICATE-----
+
+LuxTrust Global Root 2
+======================
+-----BEGIN CERTIFICATE-----
+MIIFwzCCA6ugAwIBAgIUCn6m30tEntpqJIWe5rgV0xZ/u7EwDQYJKoZIhvcNAQELBQAwRjELMAkG
+A1UEBhMCTFUxFjAUBgNVBAoMDUx1eFRydXN0IFMuQS4xHzAdBgNVBAMMFkx1eFRydXN0IEdsb2Jh
+bCBSb290IDIwHhcNMTUwMzA1MTMyMTU3WhcNMzUwMzA1MTMyMTU3WjBGMQswCQYDVQQGEwJMVTEW
+MBQGA1UECgwNTHV4VHJ1c3QgUy5BLjEfMB0GA1UEAwwWTHV4VHJ1c3QgR2xvYmFsIFJvb3QgMjCC
+AiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANeFl78RmOnwYoNMPIf5U2o3C/IPPIfOb9wm
+Kb3FibrJgz337spbxm1Jc7TJRqMbNBM/wYlFV/TZsfs2ZUv7COJIcRHIbjuend+JZTemhfY7RBi2
+xjcwYkSSl2l9QjAk5A0MiWtj3sXh306pFGxT4GHO9hcvHTy95iJMHZP1EMShduxq3sVs35a0VkBC
+wGKSMKEtFZSg0iAGCW5qbeXrt77U8PEVfIvmTroTzEsnXpk8F12PgX8zPU/TPxvsXD/wPEx1bvKm
+1Z3aLQdjAsZy6ZS8TEmVT4hSyNvoaYL4zDRbIvCGp4m9SAptZoFtyMhk+wHh9OHe2Z7d21vUKpkm
+FRseTJIpgp7VkoGSQXAZ96Tlk0u8d2cx3Rz9MXANF5kM+Qw5GSoXtTBxVdUPrljhPS80m8+f9niF
+wpN6cj5mj5wWEWCPnolvZ77gR1o7DJpni89Gxq44o/KnvObWhWszJHAiS8sIm7vI+AIpHb4gDEa/
+a4ebsypmQjVGbKq6rfmYe+lQVRQxv7HaLe2ArWgk+2mr2HETMOZns4dA/Yl+8kPREd8vZS9kzl8U
+ubG/Mb2HeFpZZYiq/FkySIbWTLkpS5XTdvN3JW1CHDiDTf2jX5t/Lax5Gw5CMZdjpPuKadUiDTSQ
+MC6otOBttpSsvItO13D8xTiOZCXhTTmQzsmHhFhxAgMBAAGjgagwgaUwDwYDVR0TAQH/BAUwAwEB
+/zBCBgNVHSAEOzA5MDcGByuBKwEBAQowLDAqBggrBgEFBQcCARYeaHR0cHM6Ly9yZXBvc2l0b3J5
+Lmx1eHRydXN0Lmx1MA4GA1UdDwEB/wQEAwIBBjAfBgNVHSMEGDAWgBT/GCh2+UgFLKGu8SsbK7JT
++Et8szAdBgNVHQ4EFgQU/xgodvlIBSyhrvErGyuyU/hLfLMwDQYJKoZIhvcNAQELBQADggIBAGoZ
+FO1uecEsh9QNcH7X9njJCwROxLHOk3D+sFTAMs2ZMGQXvw/l4jP9BzZAcg4atmpZ1gDlaCDdLnIN
+H2pkMSCEfUmmWjfrRcmF9dTHF5kH5ptV5AzoqbTOjFu1EVzPig4N1qx3gf4ynCSecs5U89BvolbW
+7MM3LGVYvlcAGvI1+ut7MV3CwRI9loGIlonBWVx65n9wNOeD4rHh4bhY79SV5GCc8JaXcozrhAIu
+ZY+kt9J/Z93I055cqqmkoCUUBpvsT34tC38ddfEz2O3OuHVtPlu5mB0xDVbYQw8wkbIEa91WvpWA
+VWe+2M2D2RjuLg+GLZKecBPs3lHJQ3gCpU3I+V/EkVhGFndadKpAvAefMLmx9xIX3eP/JEAdemrR
+TxgKqpAd60Ae36EeRJIQmvKN4dFLRp7oRUKX6kWZ8+xm1QL68qZKJKrezrnK+T+Tb/mjuuqlPpmt
+/f97mfVl7vBZKGfXkJWkE4SphMHozs51k2MavDzq1WQfLSoSOcbDWjLtR5EWDrw4wVDej8oqkDQc
+7kGUnF4ZLvhFSZl0kbAEb+MEWrGrKqv+x9CWttrhSmQGbmBNvUJO/3jaJMobtNeWOWyu8Q6qp31I
+iyBMz2TWuJdGsE7RKlY6oJO9r4Ak4Ap+58rVyuiFVdw2KuGUaJPHZnJED4AhMmwlxyOAgwrr
+-----END CERTIFICATE-----
+
+TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1
+=============================================
+-----BEGIN CERTIFICATE-----
+MIIEYzCCA0ugAwIBAgIBATANBgkqhkiG9w0BAQsFADCB0jELMAkGA1UEBhMCVFIxGDAWBgNVBAcT
+D0dlYnplIC0gS29jYWVsaTFCMEAGA1UEChM5VHVya2l5ZSBCaWxpbXNlbCB2ZSBUZWtub2xvamlr
+IEFyYXN0aXJtYSBLdXJ1bXUgLSBUVUJJVEFLMS0wKwYDVQQLEyRLYW11IFNlcnRpZmlrYXN5b24g
+TWVya2V6aSAtIEthbXUgU00xNjA0BgNVBAMTLVRVQklUQUsgS2FtdSBTTSBTU0wgS29rIFNlcnRp
+ZmlrYXNpIC0gU3VydW0gMTAeFw0xMzExMjUwODI1NTVaFw00MzEwMjUwODI1NTVaMIHSMQswCQYD
+VQQGEwJUUjEYMBYGA1UEBxMPR2ViemUgLSBLb2NhZWxpMUIwQAYDVQQKEzlUdXJraXllIEJpbGlt
+c2VsIHZlIFRla25vbG9qaWsgQXJhc3Rpcm1hIEt1cnVtdSAtIFRVQklUQUsxLTArBgNVBAsTJEth
+bXUgU2VydGlmaWthc3lvbiBNZXJrZXppIC0gS2FtdSBTTTE2MDQGA1UEAxMtVFVCSVRBSyBLYW11
+IFNNIFNTTCBLb2sgU2VydGlmaWthc2kgLSBTdXJ1bSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A
+MIIBCgKCAQEAr3UwM6q7a9OZLBI3hNmNe5eA027n/5tQlT6QlVZC1xl8JoSNkvoBHToP4mQ4t4y8
+6Ij5iySrLqP1N+RAjhgleYN1Hzv/bKjFxlb4tO2KRKOrbEz8HdDc72i9z+SqzvBV96I01INrN3wc
+wv61A+xXzry0tcXtAA9TNypN9E8Mg/uGz8v+jE69h/mniyFXnHrfA2eJLJ2XYacQuFWQfw4tJzh0
+3+f92k4S400VIgLI4OD8D62K18lUUMw7D8oWgITQUVbDjlZ/iSIzL+aFCr2lqBs23tPcLG07xxO9
+WSMs5uWk99gL7eqQQESolbuT1dCANLZGeA4fAJNG4e7p+exPFwIDAQABo0IwQDAdBgNVHQ4EFgQU
+ZT/HiobGPN08VFw1+DrtUgxHV8gwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJ
+KoZIhvcNAQELBQADggEBACo/4fEyjq7hmFxLXs9rHmoJ0iKpEsdeV31zVmSAhHqT5Am5EM2fKifh
+AHe+SMg1qIGf5LgsyX8OsNJLN13qudULXjS99HMpw+0mFZx+CFOKWI3QSyjfwbPfIPP54+M638yc
+lNhOT8NrF7f3cuitZjO1JVOr4PhMqZ398g26rrnZqsZr+ZO7rqu4lzwDGrpDxpa5RXI4s6ehlj2R
+e37AIVNMh+3yC1SVUZPVIqUNivGTDj5UDrDYyU7c8jEyVupk+eq1nRZmQnLzf9OxMUP8pI4X8W0j
+q5Rm+K37DwhuJi1/FwcJsoz7UMCflo3Ptv0AnVoUmr8CRPXBwp8iXqIPoeM=
+-----END CERTIFICATE-----
+
+GDCA TrustAUTH R5 ROOT
+======================
+-----BEGIN CERTIFICATE-----
+MIIFiDCCA3CgAwIBAgIIfQmX/vBH6nowDQYJKoZIhvcNAQELBQAwYjELMAkGA1UEBhMCQ04xMjAw
+BgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZIENPLixMVEQuMR8wHQYDVQQD
+DBZHRENBIFRydXN0QVVUSCBSNSBST09UMB4XDTE0MTEyNjA1MTMxNVoXDTQwMTIzMTE1NTk1OVow
+YjELMAkGA1UEBhMCQ04xMjAwBgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZ
+IENPLixMVEQuMR8wHQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMIICIjANBgkqhkiG9w0B
+AQEFAAOCAg8AMIICCgKCAgEA2aMW8Mh0dHeb7zMNOwZ+Vfy1YI92hhJCfVZmPoiC7XJjDp6L3TQs
+AlFRwxn9WVSEyfFrs0yw6ehGXTjGoqcuEVe6ghWinI9tsJlKCvLriXBjTnnEt1u9ol2x8kECK62p
+OqPseQrsXzrj/e+APK00mxqriCZ7VqKChh/rNYmDf1+uKU49tm7srsHwJ5uu4/Ts765/94Y9cnrr
+pftZTqfrlYwiOXnhLQiPzLyRuEH3FMEjqcOtmkVEs7LXLM3GKeJQEK5cy4KOFxg2fZfmiJqwTTQJ
+9Cy5WmYqsBebnh52nUpmMUHfP/vFBu8btn4aRjb3ZGM74zkYI+dndRTVdVeSN72+ahsmUPI2JgaQ
+xXABZG12ZuGR224HwGGALrIuL4xwp9E7PLOR5G62xDtw8mySlwnNR30YwPO7ng/Wi64HtloPzgsM
+R6flPri9fcebNaBhlzpBdRfMK5Z3KpIhHtmVdiBnaM8Nvd/WHwlqmuLMc3GkL30SgLdTMEZeS1SZ
+D2fJpcjyIMGC7J0R38IC+xo70e0gmu9lZJIQDSri3nDxGGeCjGHeuLzRL5z7D9Ar7Rt2ueQ5Vfj4
+oR24qoAATILnsn8JuLwwoC8N9VKejveSswoAHQBUlwbgsQfZxw9cZX08bVlX5O2ljelAU58VS6Bx
+9hoh49pwBiFYFIeFd3mqgnkCAwEAAaNCMEAwHQYDVR0OBBYEFOLJQJ9NzuiaoXzPDj9lxSmIahlR
+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQDRSVfg
+p8xoWLoBDysZzY2wYUWsEe1jUGn4H3++Fo/9nesLqjJHdtJnJO29fDMylyrHBYZmDRd9FBUb1Ov9
+H5r2XpdptxolpAqzkT9fNqyL7FeoPueBihhXOYV0GkLH6VsTX4/5COmSdI31R9KrO9b7eGZONn35
+6ZLpBN79SWP8bfsUcZNnL0dKt7n/HipzcEYwv1ryL3ml4Y0M2fmyYzeMN2WFcGpcWwlyua1jPLHd
++PwyvzeG5LuOmCd+uh8W4XAR8gPfJWIyJyYYMoSf/wA6E7qaTfRPuBRwIrHKK5DOKcFw9C+df/KQ
+HtZa37dG/OaG+svgIHZ6uqbL9XzeYqWxi+7egmaKTjowHz+Ay60nugxe19CxVsp3cbK1daFQqUBD
+F8Io2c9Si1vIY9RCPqAzekYu9wogRlR+ak8x8YF+QnQ4ZXMn7sZ8uI7XpTrXmKGcjBBV09tL7ECQ
+8s1uV9JiDnxXk7Gnbc2dg7sq5+W2O3FYrf3RRbxake5TFW/TRQl1brqQXR4EzzffHqhmsYzmIGrv
+/EhOdJhCrylvLmrH+33RZjEizIYAfmaDDEL0vTSSwxrqT8p+ck0LcIymSLumoRT2+1hEmRSuqguT
+aaApJUqlyyvdimYHFngVV3Eb7PVHhPOeMTd61X8kreS8/f3MboPoDKi3QWwH3b08hpcv0g==
+-----END CERTIFICATE-----
+
+TrustCor RootCert CA-1
+======================
+-----BEGIN CERTIFICATE-----
+MIIEMDCCAxigAwIBAgIJANqb7HHzA7AZMA0GCSqGSIb3DQEBCwUAMIGkMQswCQYDVQQGEwJQQTEP
+MA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEgQ2l0eTEkMCIGA1UECgwbVHJ1c3RDb3Ig
+U3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5UcnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3Jp
+dHkxHzAdBgNVBAMMFlRydXN0Q29yIFJvb3RDZXJ0IENBLTEwHhcNMTYwMjA0MTIzMjE2WhcNMjkx
+MjMxMTcyMzE2WjCBpDELMAkGA1UEBhMCUEExDzANBgNVBAgMBlBhbmFtYTEUMBIGA1UEBwwLUGFu
+YW1hIENpdHkxJDAiBgNVBAoMG1RydXN0Q29yIFN5c3RlbXMgUy4gZGUgUi5MLjEnMCUGA1UECwwe
+VHJ1c3RDb3IgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MR8wHQYDVQQDDBZUcnVzdENvciBSb290Q2Vy
+dCBDQS0xMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv463leLCJhJrMxnHQFgKq1mq
+jQCj/IDHUHuO1CAmujIS2CNUSSUQIpidRtLByZ5OGy4sDjjzGiVoHKZaBeYei0i/mJZ0PmnK6bV4
+pQa81QBeCQryJ3pS/C3Vseq0iWEk8xoT26nPUu0MJLq5nux+AHT6k61sKZKuUbS701e/s/OojZz0
+JEsq1pme9J7+wH5COucLlVPat2gOkEz7cD+PSiyU8ybdY2mplNgQTsVHCJCZGxdNuWxu72CVEY4h
+gLW9oHPY0LJ3xEXqWib7ZnZ2+AYfYW0PVcWDtxBWcgYHpfOxGgMFZA6dWorWhnAbJN7+KIor0Gqw
+/Hqi3LJ5DotlDwIDAQABo2MwYTAdBgNVHQ4EFgQU7mtJPHo/DeOxCbeKyKsZn3MzUOcwHwYDVR0j
+BBgwFoAU7mtJPHo/DeOxCbeKyKsZn3MzUOcwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC
+AYYwDQYJKoZIhvcNAQELBQADggEBACUY1JGPE+6PHh0RU9otRCkZoB5rMZ5NDp6tPVxBb5UrJKF5
+mDo4Nvu7Zp5I/5CQ7z3UuJu0h3U/IJvOcs+hVcFNZKIZBqEHMwwLKeXx6quj7LUKdJDHfXLy11yf
+ke+Ri7fc7Waiz45mO7yfOgLgJ90WmMCV1Aqk5IGadZQ1nJBfiDcGrVmVCrDRZ9MZyonnMlo2HD6C
+qFqTvsbQZJG2z9m2GM/bftJlo6bEjhcxwft+dtvTheNYsnd6djtsL1Ac59v2Z3kf9YKVmgenFK+P
+3CghZwnS1k1aHBkcjndcw5QkPTJrS37UeJSDvjdNzl/HHk484IkzlQsPpTLWPFp5LBk=
+-----END CERTIFICATE-----
+
+TrustCor RootCert CA-2
+======================
+-----BEGIN CERTIFICATE-----
+MIIGLzCCBBegAwIBAgIIJaHfyjPLWQIwDQYJKoZIhvcNAQELBQAwgaQxCzAJBgNVBAYTAlBBMQ8w
+DQYDVQQIDAZQYW5hbWExFDASBgNVBAcMC1BhbmFtYSBDaXR5MSQwIgYDVQQKDBtUcnVzdENvciBT
+eXN0ZW1zIFMuIGRlIFIuTC4xJzAlBgNVBAsMHlRydXN0Q29yIENlcnRpZmljYXRlIEF1dGhvcml0
+eTEfMB0GA1UEAwwWVHJ1c3RDb3IgUm9vdENlcnQgQ0EtMjAeFw0xNjAyMDQxMjMyMjNaFw0zNDEy
+MzExNzI2MzlaMIGkMQswCQYDVQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5h
+bWEgQ2l0eTEkMCIGA1UECgwbVHJ1c3RDb3IgU3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5U
+cnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxHzAdBgNVBAMMFlRydXN0Q29yIFJvb3RDZXJ0
+IENBLTIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCnIG7CKqJiJJWQdsg4foDSq8Gb
+ZQWU9MEKENUCrO2fk8eHyLAnK0IMPQo+QVqedd2NyuCb7GgypGmSaIwLgQ5WoD4a3SwlFIIvl9Nk
+RvRUqdw6VC0xK5mC8tkq1+9xALgxpL56JAfDQiDyitSSBBtlVkxs1Pu2YVpHI7TYabS3OtB0PAx1
+oYxOdqHp2yqlO/rOsP9+aij9JxzIsekp8VduZLTQwRVtDr4uDkbIXvRR/u8OYzo7cbrPb1nKDOOb
+XUm4TOJXsZiKQlecdu/vvdFoqNL0Cbt3Nb4lggjEFixEIFapRBF37120Hapeaz6LMvYHL1cEksr1
+/p3C6eizjkxLAjHZ5DxIgif3GIJ2SDpxsROhOdUuxTTCHWKF3wP+TfSvPd9cW436cOGlfifHhi5q
+jxLGhF5DUVCcGZt45vz27Ud+ez1m7xMTiF88oWP7+ayHNZ/zgp6kPwqcMWmLmaSISo5uZk3vFsQP
+eSghYA2FFn3XVDjxklb9tTNMg9zXEJ9L/cb4Qr26fHMC4P99zVvh1Kxhe1fVSntb1IVYJ12/+Ctg
+rKAmrhQhJ8Z3mjOAPF5GP/fDsaOGM8boXg25NSyqRsGFAnWAoOsk+xWq5Gd/bnc/9ASKL3x74xdh
+8N0JqSDIvgmk0H5Ew7IwSjiqqewYmgeCK9u4nBit2uBGF6zPXQIDAQABo2MwYTAdBgNVHQ4EFgQU
+2f4hQG6UnrybPZx9mCAZ5YwwYrIwHwYDVR0jBBgwFoAU2f4hQG6UnrybPZx9mCAZ5YwwYrIwDwYD
+VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQADggIBAJ5Fngw7tu/h
+Osh80QA9z+LqBrWyOrsGS2h60COXdKcs8AjYeVrXWoSK2BKaG9l9XE1wxaX5q+WjiYndAfrs3fnp
+kpfbsEZC89NiqpX+MWcUaViQCqoL7jcjx1BRtPV+nuN79+TMQjItSQzL/0kMmx40/W5ulop5A7Zv
+2wnL/V9lFDfhOPXzYRZY5LVtDQsEGz9QLX+zx3oaFoBg+Iof6Rsqxvm6ARppv9JYx1RXCI/hOWB3
+S6xZhBqI8d3LT3jX5+EzLfzuQfogsL7L9ziUwOHQhQ+77Sxzq+3+knYaZH9bDTMJBzN7Bj8RpFxw
+PIXAz+OQqIN3+tvmxYxoZxBnpVIt8MSZj3+/0WvitUfW2dCFmU2Umw9Lje4AWkcdEQOsQRivh7dv
+DDqPys/cA8GiCcjl/YBeyGBCARsaU1q7N6a3vLqE6R5sGtRk2tRD/pOLS/IseRYQ1JMLiI+h2IYU
+RpFHmygk71dSTlxCnKr3Sewn6EAes6aJInKc9Q0ztFijMDvd1GpUk74aTfOTlPf8hAs/hCBcNANE
+xdqtvArBAs8e5ZTZ845b2EzwnexhF7sUMlQMAimTHpKG9n/v55IFDlndmQguLvqcAFLTxWYp5KeX
+RKQOKIETNcX2b2TmQcTVL8w0RSXPQQCWPUouwpaYT05KnJe32x+SMsj/D1Fu1uwJ
+-----END CERTIFICATE-----
+
+TrustCor ECA-1
+==============
+-----BEGIN CERTIFICATE-----
+MIIEIDCCAwigAwIBAgIJAISCLF8cYtBAMA0GCSqGSIb3DQEBCwUAMIGcMQswCQYDVQQGEwJQQTEP
+MA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEgQ2l0eTEkMCIGA1UECgwbVHJ1c3RDb3Ig
+U3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5UcnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3Jp
+dHkxFzAVBgNVBAMMDlRydXN0Q29yIEVDQS0xMB4XDTE2MDIwNDEyMzIzM1oXDTI5MTIzMTE3Mjgw
+N1owgZwxCzAJBgNVBAYTAlBBMQ8wDQYDVQQIDAZQYW5hbWExFDASBgNVBAcMC1BhbmFtYSBDaXR5
+MSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJzAlBgNVBAsMHlRydXN0Q29y
+IENlcnRpZmljYXRlIEF1dGhvcml0eTEXMBUGA1UEAwwOVHJ1c3RDb3IgRUNBLTEwggEiMA0GCSqG
+SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDPj+ARtZ+odnbb3w9U73NjKYKtR8aja+3+XzP4Q1HpGjOR
+MRegdMTUpwHmspI+ap3tDvl0mEDTPwOABoJA6LHip1GnHYMma6ve+heRK9jGrB6xnhkB1Zem6g23
+xFUfJ3zSCNV2HykVh0A53ThFEXXQmqc04L/NyFIduUd+Dbi7xgz2c1cWWn5DkR9VOsZtRASqnKmc
+p0yJF4OuowReUoCLHhIlERnXDH19MURB6tuvsBzvgdAsxZohmz3tQjtQJvLsznFhBmIhVE5/wZ0+
+fyCMgMsq2JdiyIMzkX2woloPV+g7zPIlstR8L+xNxqE6FXrntl019fZISjZFZtS6mFjBAgMBAAGj
+YzBhMB0GA1UdDgQWBBREnkj1zG1I1KBLf/5ZJC+Dl5mahjAfBgNVHSMEGDAWgBREnkj1zG1I1KBL
+f/5ZJC+Dl5mahjAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsF
+AAOCAQEABT41XBVwm8nHc2FvcivUwo/yQ10CzsSUuZQRg2dd4mdsdXa/uwyqNsatR5Nj3B5+1t4u
+/ukZMjgDfxT2AHMsWbEhBuH7rBiVDKP/mZb3Kyeb1STMHd3BOuCYRLDE5D53sXOpZCz2HAF8P11F
+hcCF5yWPldwX8zyfGm6wyuMdKulMY/okYWLW2n62HGz1Ah3UKt1VkOsqEUc8Ll50soIipX1TH0Xs
+J5F95yIW6MBoNtjG8U+ARDL54dHRHareqKucBK+tIA5kmE2la8BIWJZpTdwHjFGTot+fDz2LYLSC
+jaoITmJF4PkL0uDgPFveXHEnJcLmA4GLEFPjx1WitJ/X5g==
+-----END CERTIFICATE-----
+
+SSL.com Root Certification Authority RSA
+========================================
+-----BEGIN CERTIFICATE-----
+MIIF3TCCA8WgAwIBAgIIeyyb0xaAMpkwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxDjAM
+BgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9TU0wgQ29ycG9yYXRpb24x
+MTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSBSU0EwHhcNMTYw
+MjEyMTczOTM5WhcNNDEwMjEyMTczOTM5WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMx
+EDAOBgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NM
+LmNvbSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQTCCAiIwDQYJKoZIhvcNAQEBBQAD
+ggIPADCCAgoCggIBAPkP3aMrfcvQKv7sZ4Wm5y4bunfh4/WvpOz6Sl2RxFdHaxh3a3by/ZPkPQ/C
+Fp4LZsNWlJ4Xg4XOVu/yFv0AYvUiCVToZRdOQbngT0aXqhvIuG5iXmmxX9sqAn78bMrzQdjt0Oj8
+P2FI7bADFB0QDksZ4LtO7IZl/zbzXmcCC52GVWH9ejjt/uIZALdvoVBidXQ8oPrIJZK0bnoix/ge
+oeOy3ZExqysdBP+lSgQ36YWkMyv94tZVNHwZpEpox7Ko07fKoZOI68GXvIz5HdkihCR0xwQ9aqkp
+k8zruFvh/l8lqjRYyMEjVJ0bmBHDOJx+PYZspQ9AhnwC9FwCTyjLrnGfDzrIM/4RJTXq/LrFYD3Z
+fBjVsqnTdXgDciLKOsMf7yzlLqn6niy2UUb9rwPW6mBo6oUWNmuF6R7As93EJNyAKoFBbZQ+yODJ
+gUEAnl6/f8UImKIYLEJAs/lvOCdLToD0PYFH4Ih86hzOtXVcUS4cK38acijnALXRdMbX5J+tB5O2
+UzU1/Dfkw/ZdFr4hc96SCvigY2q8lpJqPvi8ZVWb3vUNiSYE/CUapiVpy8JtynziWV+XrOvvLsi8
+1xtZPCvM8hnIk2snYxnP/Okm+Mpxm3+T/jRnhE6Z6/yzeAkzcLpmpnbtG3PrGqUNxCITIJRWCk4s
+bE6x/c+cCbqiM+2HAgMBAAGjYzBhMB0GA1UdDgQWBBTdBAkHovV6fVJTEpKV7jiAJQ2mWTAPBgNV
+HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFN0ECQei9Xp9UlMSkpXuOIAlDaZZMA4GA1UdDwEB/wQE
+AwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAIBgRlCn7Jp0cHh5wYfGVcpNxJK1ok1iOMq8bs3AD/CUr
+dIWQPXhq9LmLpZc7tRiRux6n+UBbkflVma8eEdBcHadm47GUBwwyOabqG7B52B2ccETjit3E+ZUf
+ijhDPwGFpUenPUayvOUiaPd7nNgsPgohyC0zrL/FgZkxdMF1ccW+sfAjRfSda/wZY52jvATGGAsl
+u1OJD7OAUN5F7kR/q5R4ZJjT9ijdh9hwZXT7DrkT66cPYakylszeu+1jTBi7qUD3oFRuIIhxdRjq
+erQ0cuAjJ3dctpDqhiVAq+8zD8ufgr6iIPv2tS0a5sKFsXQP+8hlAqRSAUfdSSLBv9jra6x+3uxj
+MxW3IwiPxg+NQVrdjsW5j+VFP3jbutIbQLH+cU0/4IGiul607BXgk90IH37hVZkLId6Tngr75qNJ
+vTYw/ud3sqB1l7UtgYgXZSD32pAAn8lSzDLKNXz1PQ/YK9f1JmzJBjSWFupwWRoyeXkLtoh/D1JI
+Pb9s2KJELtFOt3JY04kTlf5Eq/jXixtunLwsoFvVagCvXzfh1foQC5ichucmj87w7G6KVwuA406y
+wKBjYZC6VWg3dGq2ktufoYYitmUnDuy2n0Jg5GfCtdpBC8TTi2EbvPofkSvXRAdeuims2cXp71NI
+WuuA8ShYIc2wBlX7Jz9TkHCpBB5XJ7k=
+-----END CERTIFICATE-----
+
+SSL.com Root Certification Authority ECC
+========================================
+-----BEGIN CERTIFICATE-----
+MIICjTCCAhSgAwIBAgIIdebfy8FoW6gwCgYIKoZIzj0EAwIwfDELMAkGA1UEBhMCVVMxDjAMBgNV
+BAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9TU0wgQ29ycG9yYXRpb24xMTAv
+BgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEy
+MTgxNDAzWhcNNDEwMjEyMTgxNDAzWjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAO
+BgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNv
+bSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuBBAAiA2IA
+BEVuqVDEpiM2nl8ojRfLliJkP9x6jh3MCLOicSS6jkm5BBtHllirLZXI7Z4INcgn64mMU1jrYor+
+8FsPazFSY0E7ic3s7LaNGdM0B9y7xgZ/wkWV7Mt/qCPgCemB+vNH06NjMGEwHQYDVR0OBBYEFILR
+hXMw5zUE044CkvvlpNHEIejNMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUgtGFczDnNQTT
+jgKS++Wk0cQh6M0wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2cAMGQCMG/n61kRpGDPYbCW
+e+0F+S8Tkdzt5fxQaxFGRrMcIQBiu77D5+jNB5n5DQtdcj7EqgIwH7y6C+IwJPt8bYBVCpk+gA0z
+5Wajs6O7pdWLjwkspl1+4vAHCGht0nxpbl/f5Wpl
+-----END CERTIFICATE-----
+
+SSL.com EV Root Certification Authority RSA R2
+==============================================
+-----BEGIN CERTIFICATE-----
+MIIF6zCCA9OgAwIBAgIIVrYpzTS8ePYwDQYJKoZIhvcNAQELBQAwgYIxCzAJBgNVBAYTAlVTMQ4w
+DAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9u
+MTcwNQYDVQQDDC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIy
+MB4XDTE3MDUzMTE4MTQzN1oXDTQyMDUzMDE4MTQzN1owgYIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQI
+DAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTcwNQYD
+VQQDDC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIyMIICIjAN
+BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAjzZlQOHWTcDXtOlG2mvqM0fNTPl9fb69LT3w23jh
+hqXZuglXaO1XPqDQCEGD5yhBJB/jchXQARr7XnAjssufOePPxU7Gkm0mxnu7s9onnQqG6YE3Bf7w
+cXHswxzpY6IXFJ3vG2fThVUCAtZJycxa4bH3bzKfydQ7iEGonL3Lq9ttewkfokxykNorCPzPPFTO
+Zw+oz12WGQvE43LrrdF9HSfvkusQv1vrO6/PgN3B0pYEW3p+pKk8OHakYo6gOV7qd89dAFmPZiw+
+B6KjBSYRaZfqhbcPlgtLyEDhULouisv3D5oi53+aNxPN8k0TayHRwMwi8qFG9kRpnMphNQcAb9Zh
+CBHqurj26bNg5U257J8UZslXWNvNh2n4ioYSA0e/ZhN2rHd9NCSFg83XqpyQGp8hLH94t2S42Oim
+9HizVcuE0jLEeK6jj2HdzghTreyI/BXkmg3mnxp3zkyPuBQVPWKchjgGAGYS5Fl2WlPAApiiECto
+RHuOec4zSnaqW4EWG7WK2NAAe15itAnWhmMOpgWVSbooi4iTsjQc2KRVbrcc0N6ZVTsj9CLg+Slm
+JuwgUHfbSguPvuUCYHBBXtSuUDkiFCbLsjtzdFVHB3mBOagwE0TlBIqulhMlQg+5U8Sb/M3kHN48
++qvWBkofZ6aYMBzdLNvcGJVXZsb/XItW9XcCAwEAAaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNV
+HSMEGDAWgBT5YLvU49U09rj1BoAlp3PbRmmonjAdBgNVHQ4EFgQU+WC71OPVNPa49QaAJadz20Zp
+qJ4wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQBWs47LCp1Jjr+kxJG7ZhcFUZh1
+++VQLHqe8RT6q9OKPv+RKY9ji9i0qVQBDb6Thi/5Sm3HXvVX+cpVHBK+Rw82xd9qt9t1wkclf7nx
+Y/hoLVUE0fKNsKTPvDxeH3jnpaAgcLAExbf3cqfeIg29MyVGjGSSJuM+LmOW2puMPfgYCdcDzH2G
+guDKBAdRUNf/ktUM79qGn5nX67evaOI5JpS6aLe/g9Pqemc9YmeuJeVy6OLk7K4S9ksrPJ/psEDz
+OFSz/bdoyNrGj1E8svuR3Bznm53htw1yj+KkxKl4+esUrMZDBcJlOSgYAsOCsp0FvmXtll9ldDz7
+CTUue5wT/RsPXcdtgTpWD8w74a8CLyKsRspGPKAcTNZEtF4uXBVmCeEmKf7GUmG6sXP/wwyc5Wxq
+lD8UykAWlYTzWamsX0xhk23RO8yilQwipmdnRC652dKKQbNmC1r7fSOl8hqw/96bg5Qu0T/fkreR
+rwU7ZcegbLHNYhLDkBvjJc40vG93drEQw/cFGsDWr3RiSBd3kmmQYRzelYB0VI8YHMPzA9C/pEN1
+hlMYegouCRw2n5H9gooiS9EOUCXdywMMF8mDAAhONU2Ki+3wApRmLER/y5UnlhetCTCstnEXbosX
+9hwJ1C07mKVx01QT2WDz9UtmT/rx7iASjbSsV7FFY6GsdqnC+w==
+-----END CERTIFICATE-----
+
+SSL.com EV Root Certification Authority ECC
+===========================================
+-----BEGIN CERTIFICATE-----
+MIIClDCCAhqgAwIBAgIILCmcWxbtBZUwCgYIKoZIzj0EAwIwfzELMAkGA1UEBhMCVVMxDjAMBgNV
+BAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9TU0wgQ29ycG9yYXRpb24xNDAy
+BgNVBAMMK1NTTC5jb20gRVYgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYw
+MjEyMTgxNTIzWhcNNDEwMjEyMTgxNTIzWjB/MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMx
+EDAOBgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjE0MDIGA1UEAwwrU1NM
+LmNvbSBFViBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuB
+BAAiA2IABKoSR5CYG/vvw0AHgyBO8TCCogbR8pKGYfL2IWjKAMTH6kMAVIbc/R/fALhBYlzccBYy
+3h+Z1MzFB8gIH2EWB1E9fVwHU+M1OIzfzZ/ZLg1KthkuWnBaBu2+8KGwytAJKaNjMGEwHQYDVR0O
+BBYEFFvKXuXe0oGqzagtZFG22XKbl+ZPMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUW8pe
+5d7SgarNqC1kUbbZcpuX5k8wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2gAMGUCMQCK5kCJ
+N+vp1RPZytRrJPOwPYdGWBrssd9v+1a6cGvHOMzosYxPD/fxZ3YOg9AeUY8CMD32IygmTMZgh5Mm
+m7I1HrrW9zzRHM76JTymGoEVW/MSD2zuZYrJh6j5B+BimoxcSg==
+-----END CERTIFICATE-----
+
+GlobalSign Root CA - R6
+=======================
+-----BEGIN CERTIFICATE-----
+MIIFgzCCA2ugAwIBAgIORea7A4Mzw4VlSOb/RVEwDQYJKoZIhvcNAQEMBQAwTDEgMB4GA1UECxMX
+R2xvYmFsU2lnbiBSb290IENBIC0gUjYxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkds
+b2JhbFNpZ24wHhcNMTQxMjEwMDAwMDAwWhcNMzQxMjEwMDAwMDAwWjBMMSAwHgYDVQQLExdHbG9i
+YWxTaWduIFJvb3QgQ0EgLSBSNjETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFs
+U2lnbjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAJUH6HPKZvnsFMp7PPcNCPG0RQss
+grRIxutbPK6DuEGSMxSkb3/pKszGsIhrxbaJ0cay/xTOURQh7ErdG1rG1ofuTToVBu1kZguSgMpE
+3nOUTvOniX9PeGMIyBJQbUJmL025eShNUhqKGoC3GYEOfsSKvGRMIRxDaNc9PIrFsmbVkJq3MQbF
+vuJtMgamHvm566qjuL++gmNQ0PAYid/kD3n16qIfKtJwLnvnvJO7bVPiSHyMEAc4/2ayd2F+4OqM
+PKq0pPbzlUoSB239jLKJz9CgYXfIWHSw1CM69106yqLbnQneXUQtkPGBzVeS+n68UARjNN9rkxi+
+azayOeSsJDa38O+2HBNXk7besvjihbdzorg1qkXy4J02oW9UivFyVm4uiMVRQkQVlO6jxTiWm05O
+WgtH8wY2SXcwvHE35absIQh1/OZhFj931dmRl4QKbNQCTXTAFO39OfuD8l4UoQSwC+n+7o/hbguy
+CLNhZglqsQY6ZZZZwPA1/cnaKI0aEYdwgQqomnUdnjqGBQCe24DWJfncBZ4nWUx2OVvq+aWh2IMP
+0f/fMBH5hc8zSPXKbWQULHpYT9NLCEnFlWQaYw55PfWzjMpYrZxCRXluDocZXFSxZba/jJvcE+kN
+b7gu3GduyYsRtYQUigAZcIN5kZeR1BonvzceMgfYFGM8KEyvAgMBAAGjYzBhMA4GA1UdDwEB/wQE
+AwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBSubAWjkxPioufi1xzWx/B/yGdToDAfBgNV
+HSMEGDAWgBSubAWjkxPioufi1xzWx/B/yGdToDANBgkqhkiG9w0BAQwFAAOCAgEAgyXt6NH9lVLN
+nsAEoJFp5lzQhN7craJP6Ed41mWYqVuoPId8AorRbrcWc+ZfwFSY1XS+wc3iEZGtIxg93eFyRJa0
+lV7Ae46ZeBZDE1ZXs6KzO7V33EByrKPrmzU+sQghoefEQzd5Mr6155wsTLxDKZmOMNOsIeDjHfrY
+BzN2VAAiKrlNIC5waNrlU/yDXNOd8v9EDERm8tLjvUYAGm0CuiVdjaExUd1URhxN25mW7xocBFym
+Fe944Hn+Xds+qkxV/ZoVqW/hpvvfcDDpw+5CRu3CkwWJ+n1jez/QcYF8AOiYrg54NMMl+68KnyBr
+3TsTjxKM4kEaSHpzoHdpx7Zcf4LIHv5YGygrqGytXm3ABdJ7t+uA/iU3/gKbaKxCXcPu9czc8FB1
+0jZpnOZ7BN9uBmm23goJSFmH63sUYHpkqmlD75HHTOwY3WzvUy2MmeFe8nI+z1TIvWfspA9MRf/T
+uTAjB0yPEL+GltmZWrSZVxykzLsViVO6LAUP5MSeGbEYNNVMnbrt9x+vJJUEeKgDu+6B5dpffItK
+oZB0JaezPkvILFa9x8jvOOJckvB595yEunQtYQEgfn7R8k8HWV+LLUNS60YMlOH1Zkd5d9VUWx+t
+JDfLRVpOoERIyNiwmcUVhAn21klJwGW45hpxbqCo8YLoRT5s1gLXCmeDBVrJpBA=
+-----END CERTIFICATE-----
+
+OISTE WISeKey Global Root GC CA
+===============================
+-----BEGIN CERTIFICATE-----
+MIICaTCCAe+gAwIBAgIQISpWDK7aDKtARb8roi066jAKBggqhkjOPQQDAzBtMQswCQYDVQQGEwJD
+SDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNlZDEo
+MCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwgUm9vdCBHQyBDQTAeFw0xNzA1MDkwOTQ4MzRa
+Fw00MjA1MDkwOTU4MzNaMG0xCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQL
+ExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2Jh
+bCBSb290IEdDIENBMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAETOlQwMYPchi82PG6s4nieUqjFqdr
+VCTbUf/q9Akkwwsin8tqJ4KBDdLArzHkdIJuyiXZjHWd8dvQmqJLIX4Wp2OQ0jnUsYd4XxiWD1Ab
+NTcPasbc2RNNpI6QN+a9WzGRo1QwUjAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAd
+BgNVHQ4EFgQUSIcUrOPDnpBgOtfKie7TrYy0UGYwEAYJKwYBBAGCNxUBBAMCAQAwCgYIKoZIzj0E
+AwMDaAAwZQIwJsdpW9zV57LnyAyMjMPdeYwbY9XJUpROTYJKcx6ygISpJcBMWm1JKWB4E+J+SOtk
+AjEA2zQgMgj/mkkCtojeFK9dbJlxjRo/i9fgojaGHAeCOnZT/cKi7e97sIBPWA9LUzm9
+-----END CERTIFICATE-----

File diff suppressed because it is too large
+ 262 - 0
vendor/composer/ca-bundle/src/CaBundle.php


+ 12 - 0
vendor/composer/composer/.gitattributes

xqd
@@ -0,0 +1,12 @@
+# Auto-detect text files, ensure they use LF.
+*       text=auto eol=lf
+
+# These files are always considered text and should use LF.
+# See core.whitespace @ http://git-scm.com/docs/git-config for whitespace flags.
+*.php   text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=4 diff=php
+*.json  text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=4
+*.test  text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=4
+*.yml   text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=2
+
+# Exclude non-essential files from dist
+/tests export-ignore

+ 54 - 0
vendor/composer/composer/.github/CONTRIBUTING.md

xqd
@@ -0,0 +1,54 @@
+Contributing to Composer
+========================
+
+Please note that this project is released with a
+[Contributor Code of Conduct](http://contributor-covenant.org/version/1/4/).
+By participating in this project you agree to abide by its terms.
+
+Reporting Issues
+----------------
+
+When reporting issues, please try to be as descriptive as possible, and include
+as much relevant information as you can. A step by step guide on how to
+reproduce the issue will greatly increase the chances of your issue being
+resolved in a timely manner.
+
+For example, if you are experiencing a problem while running one of the
+commands, please provide full output of said command in very very verbose mode
+(`-vvv`, e.g. `composer install -vvv`).
+
+If your issue involves installing, updating or resolving dependencies, the
+chance of us being able to reproduce your issue will be much higher if you
+share your `composer.json` with us.
+
+Security Reports
+----------------
+
+Please send any sensitive issue to [security@packagist.org](mailto:security@packagist.org). Thanks!
+
+Installation from Source
+------------------------
+
+Prior to contributing to Composer, you must be able to run the test suite.
+To achieve this, you need to acquire the Composer source code:
+
+1. Run `git clone https://github.com/composer/composer.git`
+2. Download the [`composer.phar`](https://getcomposer.org/composer.phar) executable
+3. Run Composer to get the dependencies: `cd composer && php ../composer.phar install`
+
+You can run the test suite by executing `vendor/bin/phpunit` when inside the
+composer directory, and run Composer by executing the `bin/composer`. To test
+your modified Composer code against another project, run `php
+/path/to/composer/bin/composer` inside that project's directory.
+
+Contributing policy
+-------------------
+
+Fork the project, create a feature branch, and send us a pull request.
+
+To ensure a consistent code base, you should make sure the code follows
+the [PSR-2 Coding Standards](http://www.php-fig.org/psr/psr-2/). You can also
+run [php-cs-fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer) with the
+configuration file that can be found in the project root directory.
+
+If you would like to help, take a look at the [list of open issues](https://github.com/composer/composer/issues).

+ 25 - 0
vendor/composer/composer/.github/ISSUE_TEMPLATE.md

xqd
@@ -0,0 +1,25 @@
+My `composer.json`:
+
+```json
+...replace me...
+```
+
+Output of `composer diagnose`:
+
+```
+...replace me...
+```
+
+When I run this command:
+
+```
+...replace me...
+```
+
+I get the following output:
+
+```
+...replace me...
+```
+
+And I expected this to happen:

Some files were not shown because too many files changed in this diff