Загрузка данных


~/front$ tree
.
├── _automation
│   └── teamcity
│       └── get_full_version_in_teamcity_format.py
├── conf
│   ├── nginx_config_generator.linux
│   ├── nginx_config_generator.linux-rvpn
│   ├── vipnet-webgui-nginx.linux
│   ├── vipnet-web-gui-php-cgi.ini
│   └── webui_settings_to_nginx_config.xsl
├── ivy
│   ├── build_linux.xml
│   ├── build.xml
│   ├── configure.bat
│   ├── credentials.xml
│   ├── generate_ivy_version_files.py
│   ├── ivy-linux.xml
│   ├── ivysettings.xml
│   ├── ivy.xml
│   ├── makelink.xml
│   ├── pub.bat
│   ├── pub_local.bat
│   ├── pub_local.sh
│   └── run_ant.bat
├── map_sources.bat
├── map_sources.sh
├── src
│   ├── application
│   │   ├── app
│   │   │   ├── Application.js
│   │   │   └── data
│   │   │       └── NavigationSchema.js
│   │   ├── app.js
│   │   ├── app.json
│   │   ├── backend
│   │   │   ├── app
│   │   │   │   ├── containers.php
│   │   │   │   ├── controllers
│   │   │   │   │   ├── ErrorExceptionWithOutput.php
│   │   │   │   │   ├── Errors.php
│   │   │   │   │   └── Utils.php
│   │   │   │   ├── models
│   │   │   │   │   └── AbstractModel.php
│   │   │   │   ├── routes.php
│   │   │   │   └── services
│   │   │   │       ├── Errors.php
│   │   │   │       └── Utils.php
│   │   │   ├── composer.json
│   │   │   ├── composer.lock
│   │   │   ├── index.php
│   │   │   ├── vendor
│   │   │   │   ├── autoload.php
│   │   │   │   ├── composer
│   │   │   │   │   ├── autoload_classmap.php
│   │   │   │   │   ├── autoload_files.php
│   │   │   │   │   ├── autoload_namespaces.php
│   │   │   │   │   ├── autoload_psr4.php
│   │   │   │   │   ├── autoload_real.php
│   │   │   │   │   ├── autoload_static.php
│   │   │   │   │   ├── ClassLoader.php
│   │   │   │   │   ├── installed.json
│   │   │   │   │   └── LICENSE
│   │   │   │   ├── container-interop
│   │   │   │   │   └── container-interop
│   │   │   │   │       ├── composer.json
│   │   │   │   │       ├── docs
│   │   │   │   │       │   ├── ContainerInterface.md
│   │   │   │   │       │   ├── ContainerInterface-meta.md
│   │   │   │   │       │   ├── Delegate-lookup.md
│   │   │   │   │       │   ├── Delegate-lookup-meta.md
│   │   │   │   │       │   └── images
│   │   │   │   │       │       ├── interoperating_containers.png
│   │   │   │   │       │       ├── priority.png
│   │   │   │   │       │       └── side_by_side_containers.png
│   │   │   │   │       ├── LICENSE
│   │   │   │   │       ├── README.md
│   │   │   │   │       └── src
│   │   │   │   │           └── Interop
│   │   │   │   │               └── Container
│   │   │   │   │                   ├── ContainerInterface.php
│   │   │   │   │                   └── Exception
│   │   │   │   │                       ├── ContainerException.php
│   │   │   │   │                       └── NotFoundException.php
│   │   │   │   ├── nikic
│   │   │   │   │   └── fast-route
│   │   │   │   │       ├── composer.json
│   │   │   │   │       ├── FastRoute.hhi
│   │   │   │   │       ├── LICENSE
│   │   │   │   │       ├── phpunit.xml
│   │   │   │   │       ├── psalm.xml
│   │   │   │   │       ├── README.md
│   │   │   │   │       ├── src
│   │   │   │   │       │   ├── BadRouteException.php
│   │   │   │   │       │   ├── bootstrap.php
│   │   │   │   │       │   ├── DataGenerator
│   │   │   │   │       │   │   ├── CharCountBased.php
│   │   │   │   │       │   │   ├── GroupCountBased.php
│   │   │   │   │       │   │   ├── GroupPosBased.php
│   │   │   │   │       │   │   ├── MarkBased.php
│   │   │   │   │       │   │   └── RegexBasedAbstract.php
│   │   │   │   │       │   ├── DataGenerator.php
│   │   │   │   │       │   ├── Dispatcher
│   │   │   │   │       │   │   ├── CharCountBased.php
│   │   │   │   │       │   │   ├── GroupCountBased.php
│   │   │   │   │       │   │   ├── GroupPosBased.php
│   │   │   │   │       │   │   ├── MarkBased.php
│   │   │   │   │       │   │   └── RegexBasedAbstract.php
│   │   │   │   │       │   ├── Dispatcher.php
│   │   │   │   │       │   ├── functions.php
│   │   │   │   │       │   ├── RouteCollector.php
│   │   │   │   │       │   ├── RouteParser
│   │   │   │   │       │   │   └── Std.php
│   │   │   │   │       │   ├── RouteParser.php
│   │   │   │   │       │   └── Route.php
│   │   │   │   │       └── test
│   │   │   │   │           ├── bootstrap.php
│   │   │   │   │           ├── Dispatcher
│   │   │   │   │           │   ├── CharCountBasedTest.php
│   │   │   │   │           │   ├── DispatcherTest.php
│   │   │   │   │           │   ├── GroupCountBasedTest.php
│   │   │   │   │           │   ├── GroupPosBasedTest.php
│   │   │   │   │           │   └── MarkBasedTest.php
│   │   │   │   │           ├── HackTypechecker
│   │   │   │   │           │   ├── fixtures
│   │   │   │   │           │   │   ├── all_options.php
│   │   │   │   │           │   │   ├── empty_options.php
│   │   │   │   │           │   │   └── no_options.php
│   │   │   │   │           │   └── HackTypecheckerTest.php
│   │   │   │   │           ├── RouteCollectorTest.php
│   │   │   │   │           └── RouteParser
│   │   │   │   │               └── StdTest.php
│   │   │   │   ├── phpseclib
│   │   │   │   │   └── phpseclib
│   │   │   │   │       ├── appveyor.yml
│   │   │   │   │       ├── AUTHORS
│   │   │   │   │       ├── composer.json
│   │   │   │   │       ├── LICENSE
│   │   │   │   │       ├── phpseclib
│   │   │   │   │       │   ├── bootstrap.php
│   │   │   │   │       │   ├── Crypt
│   │   │   │   │       │   │   ├── AES.php
│   │   │   │   │       │   │   ├── Base.php
│   │   │   │   │       │   │   ├── Blowfish.php
│   │   │   │   │       │   │   ├── DES.php
│   │   │   │   │       │   │   ├── Hash.php
│   │   │   │   │       │   │   ├── Random.php
│   │   │   │   │       │   │   ├── RC2.php
│   │   │   │   │       │   │   ├── RC4.php
│   │   │   │   │       │   │   ├── Rijndael.php
│   │   │   │   │       │   │   ├── RSA.php
│   │   │   │   │       │   │   ├── TripleDES.php
│   │   │   │   │       │   │   └── Twofish.php
│   │   │   │   │       │   ├── File
│   │   │   │   │       │   │   ├── ANSI.php
│   │   │   │   │       │   │   ├── ASN1
│   │   │   │   │       │   │   │   └── Element.php
│   │   │   │   │       │   │   ├── ASN1.php
│   │   │   │   │       │   │   └── X509.php
│   │   │   │   │       │   ├── Math
│   │   │   │   │       │   │   └── BigInteger.php
│   │   │   │   │       │   ├── Net
│   │   │   │   │       │   │   ├── SCP.php
│   │   │   │   │       │   │   ├── SFTP
│   │   │   │   │       │   │   │   └── Stream.php
│   │   │   │   │       │   │   ├── SFTP.php
│   │   │   │   │       │   │   ├── SSH1.php
│   │   │   │   │       │   │   └── SSH2.php
│   │   │   │   │       │   ├── openssl.cnf
│   │   │   │   │       │   └── System
│   │   │   │   │       │       └── SSH
│   │   │   │   │       │           ├── Agent
│   │   │   │   │       │           │   └── Identity.php
│   │   │   │   │       │           └── Agent.php
│   │   │   │   │       └── README.md
│   │   │   │   ├── pimple
│   │   │   │   │   └── pimple
│   │   │   │   │       ├── CHANGELOG
│   │   │   │   │       ├── composer.json
│   │   │   │   │       ├── ext
│   │   │   │   │       │   └── pimple
│   │   │   │   │       │       ├── config.m4
│   │   │   │   │       │       ├── config.w32
│   │   │   │   │       │       ├── php_pimple.h
│   │   │   │   │       │       ├── pimple.c
│   │   │   │   │       │       ├── pimple_compat.h
│   │   │   │   │       │       ├── README.md
│   │   │   │   │       │       └── tests
│   │   │   │   │       │           ├── 001.phpt
│   │   │   │   │       │           ├── 002.phpt
│   │   │   │   │       │           ├── 003.phpt
│   │   │   │   │       │           ├── 004.phpt
│   │   │   │   │       │           ├── 005.phpt
│   │   │   │   │       │           ├── 006.phpt
│   │   │   │   │       │           ├── 007.phpt
│   │   │   │   │       │           ├── 008.phpt
│   │   │   │   │       │           ├── 009.phpt
│   │   │   │   │       │           ├── 010.phpt
│   │   │   │   │       │           ├── 011.phpt
│   │   │   │   │       │           ├── 012.phpt
│   │   │   │   │       │           ├── 013.phpt
│   │   │   │   │       │           ├── 014.phpt
│   │   │   │   │       │           ├── 015.phpt
│   │   │   │   │       │           ├── 016.phpt
│   │   │   │   │       │           ├── 017_1.phpt
│   │   │   │   │       │           ├── 017.phpt
│   │   │   │   │       │           ├── 018.phpt
│   │   │   │   │       │           ├── 019.phpt
│   │   │   │   │       │           ├── bench.phpb
│   │   │   │   │       │           └── bench_shared.phpb
│   │   │   │   │       ├── LICENSE
│   │   │   │   │       ├── phpunit.xml.dist
│   │   │   │   │       ├── README.rst
│   │   │   │   │       └── src
│   │   │   │   │           └── Pimple
│   │   │   │   │               ├── Container.php
│   │   │   │   │               ├── Exception
│   │   │   │   │               │   ├── ExpectedInvokableException.php
│   │   │   │   │               │   ├── FrozenServiceException.php
│   │   │   │   │               │   ├── InvalidServiceIdentifierException.php
│   │   │   │   │               │   └── UnknownIdentifierException.php
│   │   │   │   │               ├── Psr11
│   │   │   │   │               │   ├── Container.php
│   │   │   │   │               │   └── ServiceLocator.php
│   │   │   │   │               ├── ServiceIterator.php
│   │   │   │   │               ├── ServiceProviderInterface.php
│   │   │   │   │               └── Tests
│   │   │   │   │                   ├── Fixtures
│   │   │   │   │                   │   ├── Invokable.php
│   │   │   │   │                   │   ├── NonInvokable.php
│   │   │   │   │                   │   ├── PimpleServiceProvider.php
│   │   │   │   │                   │   └── Service.php
│   │   │   │   │                   ├── PimpleServiceProviderInterfaceTest.php
│   │   │   │   │                   ├── PimpleTest.php
│   │   │   │   │                   ├── Psr11
│   │   │   │   │                   │   ├── ContainerTest.php
│   │   │   │   │                   │   └── ServiceLocatorTest.php
│   │   │   │   │                   └── ServiceIteratorTest.php
│   │   │   │   ├── psr
│   │   │   │   │   ├── container
│   │   │   │   │   │   ├── composer.json
│   │   │   │   │   │   ├── LICENSE
│   │   │   │   │   │   ├── README.md
│   │   │   │   │   │   └── src
│   │   │   │   │   │       ├── ContainerExceptionInterface.php
│   │   │   │   │   │       ├── ContainerInterface.php
│   │   │   │   │   │       └── NotFoundExceptionInterface.php
│   │   │   │   │   └── http-message
│   │   │   │   │       ├── CHANGELOG.md
│   │   │   │   │       ├── composer.json
│   │   │   │   │       ├── LICENSE
│   │   │   │   │       ├── README.md
│   │   │   │   │       └── src
│   │   │   │   │           ├── MessageInterface.php
│   │   │   │   │           ├── RequestInterface.php
│   │   │   │   │           ├── ResponseInterface.php
│   │   │   │   │           ├── ServerRequestInterface.php
│   │   │   │   │           ├── StreamInterface.php
│   │   │   │   │           ├── UploadedFileInterface.php
│   │   │   │   │           └── UriInterface.php
│   │   │   │   └── slim
│   │   │   │       └── slim
│   │   │   │           ├── CODE_OF_CONDUCT.md
│   │   │   │           ├── composer.json
│   │   │   │           ├── LICENSE.md
│   │   │   │           ├── MAINTAINERS.md
│   │   │   │           ├── phpstan.neon.dist
│   │   │   │           └── Slim
│   │   │   │               ├── App.php
│   │   │   │               ├── CallableResolverAwareTrait.php
│   │   │   │               ├── CallableResolver.php
│   │   │   │               ├── Collection.php
│   │   │   │               ├── Container.php
│   │   │   │               ├── DefaultServicesProvider.php
│   │   │   │               ├── DeferredCallable.php
│   │   │   │               ├── Exception
│   │   │   │               │   ├── ContainerException.php
│   │   │   │               │   ├── ContainerValueNotFoundException.php
│   │   │   │               │   ├── InvalidMethodException.php
│   │   │   │               │   ├── MethodNotAllowedException.php
│   │   │   │               │   ├── NotFoundException.php
│   │   │   │               │   └── SlimException.php
│   │   │   │               ├── Handlers
│   │   │   │               │   ├── AbstractError.php
│   │   │   │               │   ├── AbstractHandler.php
│   │   │   │               │   ├── Error.php
│   │   │   │               │   ├── NotAllowed.php
│   │   │   │               │   ├── NotFound.php
│   │   │   │               │   ├── PhpError.php
│   │   │   │               │   └── Strategies
│   │   │   │               │       ├── RequestResponseArgs.php
│   │   │   │               │       └── RequestResponse.php
│   │   │   │               ├── Http
│   │   │   │               │   ├── Body.php
│   │   │   │               │   ├── Cookies.php
│   │   │   │               │   ├── Environment.php
│   │   │   │               │   ├── Headers.php
│   │   │   │               │   ├── Message.php
│   │   │   │               │   ├── RequestBody.php
│   │   │   │               │   ├── Request.php
│   │   │   │               │   ├── Response.php
│   │   │   │               │   ├── StatusCode.php
│   │   │   │               │   ├── Stream.php
│   │   │   │               │   ├── UploadedFile.php
│   │   │   │               │   └── Uri.php
│   │   │   │               ├── Interfaces
│   │   │   │               │   ├── CallableResolverInterface.php
│   │   │   │               │   ├── CollectionInterface.php
│   │   │   │               │   ├── Http
│   │   │   │               │   │   ├── CookiesInterface.php
│   │   │   │               │   │   ├── EnvironmentInterface.php
│   │   │   │               │   │   └── HeadersInterface.php
│   │   │   │               │   ├── InvocationStrategyInterface.php
│   │   │   │               │   ├── RouteGroupInterface.php
│   │   │   │               │   ├── RouteInterface.php
│   │   │   │               │   └── RouterInterface.php
│   │   │   │               ├── MiddlewareAwareTrait.php
│   │   │   │               ├── Routable.php
│   │   │   │               ├── RouteGroup.php
│   │   │   │               ├── Route.php
│   │   │   │               └── Router.php
│   │   │   └── zipLog.php
│   │   ├── build.xml
│   │   ├── classic
│   │   │   ├── sass
│   │   │   │   └── etc
│   │   │   │       └── all.scss
│   │   │   └── src
│   │   │       └── view
│   │   │           └── about
│   │   │               ├── ViewController.js
│   │   │               ├── ViewModel.js
│   │   │               └── Window.js
│   │   ├── index.html
│   │   ├── locale
│   │   │   ├── brand_cdpnet.txt
│   │   │   ├── brand_vipnet.txt
│   │   │   ├── brand_vipnet_west.txt
│   │   │   ├── de.js
│   │   │   ├── en.js
│   │   │   ├── ru.js
│   │   │   ├── vipnet
│   │   │   │   └── licence_ru.html
│   │   │   └── vipnet_west
│   │   │       ├── licence_de.html
│   │   │       └── licence_en.html
│   │   ├── overrides
│   │   │   └── Component.js
│   │   ├── resources
│   │   │   ├── favicon.ico
│   │   │   ├── images
│   │   │   │   ├── AppHeaderIcon.png
│   │   │   │   ├── connection-host-wait.svg
│   │   │   │   └── logo.svg
│   │   │   ├── js
│   │   │   │   └── settings.js
│   │   │   └── VERSION.WEBGUI
│   │   └── sass
│   │       ├── etc
│   │       │   ├── all_brand_vipnet.scss
│   │       │   └── all.scss
│   │       ├── example
│   │       │   ├── fashion.html
│   │       │   ├── render.js
│   │       │   └── theme.html
│   │       └── var
│   │           └── all.scss
│   ├── build.xml
│   ├── packages
│   │   └── local
│   │       ├── Authentication
│   │       ├── Certificates
│   │       ├── Core
│   │       ├── CoreTheme
│   │       ├── Dgd
│   │       ├── Dhcp
│   │       ├── Dpi
│   │       ├── Firewall
│   │       ├── IpLog
│   │       ├── Ips
│   │       ├── MFTP
│   │       ├── Monitoring
│   │       ├── NetInterfaces
│   │       ├── NetworkServices
│   │       ├── NetworkSettings
│   │       ├── Proxy
│   │       ├── SystemSettings
│   │       ├── Voip
│   │       └── VpnNodes
│   └── workspace.json
└── version

111 directories, 279 files
vikinoleg@homeDeb:~/front$